123 lines
4.6 KiB
PHP
Executable File
123 lines
4.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: karthi
|
|
* Date: 2/7/18
|
|
* Time: 10:37 AM
|
|
*/
|
|
class SessionMaster_Controller extends REST_Controller {
|
|
|
|
function __construct()
|
|
{
|
|
// Construct the parent class
|
|
parent::__construct();
|
|
|
|
// Configure limits on our controller methods
|
|
// Ensure you have created the 'limits' table and enabled 'limits' within application/config/rest.php
|
|
$this->methods['addSessionMasterDetails_post']['limit'] = 100; // 50 requests per hour per user/key
|
|
$this->methods['getSessionMasterDetails_post']['limit'] = 500; // 50 requests per hour per user/key
|
|
$this->methods['updateSessionMasterDetails_post']['limit'] = 500;// 500 requests per hour per user/key
|
|
// load the model
|
|
$this->load->model('SessionMaster_model', 'sessionM_model');
|
|
|
|
}
|
|
|
|
/*
|
|
* This method used to add session master details
|
|
* created by kms
|
|
* */
|
|
|
|
public function addSessionMasterDetails_post()
|
|
{
|
|
$now = new DateTime();
|
|
$now->setTimezone(new DateTimezone('Asia/Kolkata'));
|
|
$details['SessionName'] = $this->post('sessionName');
|
|
$details['SessionDate'] = $this->post('sessionDate');
|
|
$details['CreatedBy'] = $this->post('createdBy');
|
|
$details['IsActive'] = $this->post('status');
|
|
$details['BranchCode'] = $this->post('branchCode');
|
|
$details['CreatedOn'] = $now->format('Y-m-d H:i:s');
|
|
$university['UniversityID'] = $this->post('universityName');
|
|
|
|
$sessionDetails = $this->sessionM_model->addSession($details,$university);// Check if the users data store contains users (in case the database result returns NULL)
|
|
if ($sessionDetails)
|
|
{
|
|
$sessionDetails['status'] = REST_Controller::HTTP_OK;
|
|
// Set the response and exit
|
|
$this->response($sessionDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
|
|
}
|
|
else
|
|
{
|
|
// Set the response and exit
|
|
$this->response([
|
|
'message' => 'Something went wrong.please try again!',
|
|
'status' => REST_Controller::HTTP_NOT_FOUND
|
|
], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
|
|
}
|
|
|
|
|
|
}
|
|
/*
|
|
* get session master details
|
|
* created by kms
|
|
* */
|
|
public function getSessionMasterDetails_post()
|
|
{
|
|
$requestedBy = $this->post('requestedBy');
|
|
$branchCode = $this->post('branchCode');
|
|
$getSession = $this->sessionM_model->getSession($requestedBy,$branchCode);
|
|
if ($getSession)
|
|
{
|
|
$getSession['status'] = REST_Controller::HTTP_OK;
|
|
// Set the response and exit
|
|
$this->response($getSession, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
|
|
}
|
|
else
|
|
{
|
|
// Set the response and exit
|
|
$this->response([
|
|
'message' => 'No records found!',
|
|
'status' => REST_Controller::HTTP_NOT_FOUND
|
|
], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
|
|
}
|
|
|
|
|
|
}
|
|
/*
|
|
* update the session master details
|
|
* created by kms
|
|
* */
|
|
public function updateSessionMasterDetails_post()
|
|
{
|
|
$now = new DateTime();
|
|
$now->setTimezone(new DateTimezone('Asia/Kolkata'));
|
|
$details['SessionID'] = $this->post('sessionID');
|
|
$details['SessionDate'] = $this->post('sessionDate');
|
|
$details['SessionName'] = $this->post('sessionName');
|
|
$details['IsActive'] = $this->post('status');
|
|
$universityDetails['University'] = $this->post('university');
|
|
$details['UpdatedBy'] = $this->post('updatedBy');
|
|
$details['UpdatedOn'] = $now->format("Y-m-d H:i:s");
|
|
$details['BranchCode'] = $this->post('branchCode');
|
|
$updateDetails = $this->sessionM_model->updateSession($details,$universityDetails);// Check if the users data store contains users (in case the database result returns NULL)
|
|
|
|
if ($updateDetails)
|
|
{
|
|
$updateDetails['status'] = REST_Controller::HTTP_OK;
|
|
// Set the response and exit
|
|
$this->response($updateDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
|
|
}
|
|
else
|
|
{
|
|
// Set the response and exit
|
|
$this->response([
|
|
'message' => 'Something went wrong.please try again!',
|
|
'status' => REST_Controller::HTTP_NOT_FOUND
|
|
], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} |