removed all files that are in the .gitignore
This commit is contained in:
80
app/main/controller/api/access.php
Normal file
80
app/main/controller/api/access.php
Normal file
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: exodus4d
|
||||
* Date: 24.05.2015
|
||||
* Time: 17:42
|
||||
*/
|
||||
|
||||
namespace controller\api;
|
||||
use Model;
|
||||
|
||||
class Access extends \Controller\AccessController {
|
||||
|
||||
/**
|
||||
* event handler
|
||||
* @param $f3
|
||||
*/
|
||||
function beforeroute($f3) {
|
||||
|
||||
parent::beforeroute($f3);
|
||||
|
||||
// set header for all routes
|
||||
header('Content-type: application/json');
|
||||
}
|
||||
|
||||
/**
|
||||
* search user/corporation or alliance by name
|
||||
* @param $f3
|
||||
* @param $params
|
||||
*/
|
||||
public function search($f3, $params){
|
||||
|
||||
$accessData = [];
|
||||
|
||||
if(
|
||||
array_key_exists( 'arg1', $params) &&
|
||||
array_key_exists( 'arg2', $params)
|
||||
){
|
||||
$searchType = strtolower( $params['arg1'] );
|
||||
$searchToken = strtolower( $params['arg2'] );
|
||||
|
||||
$accessModel = null;
|
||||
switch($searchType){
|
||||
case 'user':
|
||||
$accessModel = Model\BasicModel::getNew('UserModel');
|
||||
break;
|
||||
case 'corporation':
|
||||
$accessModel = Model\BasicModel::getNew('CorporationModel');
|
||||
break;
|
||||
case 'alliance':
|
||||
$accessModel = Model\BasicModel::getNew('AllianceModel');
|
||||
break;
|
||||
}
|
||||
|
||||
if( is_object($accessModel) ){
|
||||
|
||||
// find "active" entries that have their "sharing" option activated
|
||||
$accessList = $accessModel->find( array(
|
||||
"LOWER(name) LIKE :token AND " .
|
||||
"active = 1 AND " .
|
||||
"sharing = 1 ",
|
||||
':token' => '%' . $searchToken . '%'
|
||||
));
|
||||
|
||||
if($accessList){
|
||||
foreach($accessList as $accessObject){
|
||||
$accessData[] = $accessObject->getData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
echo json_encode($accessData);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user