@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | /** |
| 15 | 15 | * @var $type |
| 16 | 16 | */ |
| 17 | - public $type='project'; |
|
| 17 | + public $type = 'project'; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @var array |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | /** |
| 32 | 32 | * @var $commandRule |
| 33 | 33 | */ |
| 34 | - public $commandRule=[]; |
|
| 34 | + public $commandRule = []; |
|
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | 37 | * @method create |
@@ -46,17 +46,17 @@ discard block |
||
| 46 | 46 | $this->directory['projectDir'] = $this->projectPath(); |
| 47 | 47 | $this->argument['exceptionNamespace'] = app()->namespace()->exception(); |
| 48 | 48 | $this->argument['resourcePath'] = app()->path()->appResourche(); |
| 49 | - $this->argument['testNamespace'] = app()->namespace()->tests(); |
|
| 49 | + $this->argument['testNamespace'] = app()->namespace()->tests(); |
|
| 50 | 50 | |
| 51 | - $recursiveDefaultDirectory = explode("\\",$this->argument['project']);
|
|
| 51 | + $recursiveDefaultDirectory = explode("\\", $this->argument['project']);
|
|
| 52 | 52 | $this->argument['applicationName'] = pos($recursiveDefaultDirectory); |
| 53 | 53 | $recursiveDefaultDirectory[] = 'V1'; |
| 54 | 54 | $recursiveDefaultDirectoryList = []; |
| 55 | 55 | |
| 56 | - foreach (array_slice($recursiveDefaultDirectory,1) as $defaultDirectory){
|
|
| 56 | + foreach (array_slice($recursiveDefaultDirectory, 1) as $defaultDirectory) {
|
|
| 57 | 57 | |
| 58 | - $recursiveDefaultDirectoryList[]=$defaultDirectory; |
|
| 59 | - $this->directory[$defaultDirectory.'Path'] = $this->projectPath().''.implode("/",$recursiveDefaultDirectoryList);
|
|
| 58 | + $recursiveDefaultDirectoryList[] = $defaultDirectory; |
|
| 59 | + $this->directory[$defaultDirectory.'Path'] = $this->projectPath().''.implode("/", $recursiveDefaultDirectoryList);
|
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | //$this->directory['optionalDir'] = $this->optional(); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | //$this->directory['sourceDir'] = $this->sourceDir(); |
| 83 | 83 | //$this->directory['sourceSupportDir'] = $this->sourceSupportDir(); |
| 84 | 84 | //$this->directory['sourceSupportTraitDir'] = $this->sourceSupportDir().'/Traits'; |
| 85 | - $this->directory['exceptionDir'] = app()->path()->exception(); |
|
| 85 | + $this->directory['exceptionDir'] = app()->path()->exception(); |
|
| 86 | 86 | |
| 87 | 87 | //set project directory |
| 88 | 88 | $this->file->makeDirectory($this); |
@@ -99,11 +99,11 @@ discard block |
||
| 99 | 99 | $this->touch['kernel/exception'] = $this->provider().'/ExceptionServiceProvider.php'; |
| 100 | 100 | $this->touch['kernel/response'] = $this->provider().'/ResponseServiceProvider.php'; |
| 101 | 101 | $this->touch['kernel/entity'] = $this->provider().'/EntityServiceProvider.php'; |
| 102 | - $this->touch['kernel/cache'] = $this->provider().'/CacheServiceProvider.php'; |
|
| 102 | + $this->touch['kernel/cache'] = $this->provider().'/CacheServiceProvider.php'; |
|
| 103 | 103 | $this->touch['kernel/authenticate'] = $this->provider().'/AuthenticateServiceProvider.php'; |
| 104 | 104 | $this->touch['kernel/role'] = $this->provider().'/RoleServiceProvider.php'; |
| 105 | 105 | $this->touch['kernel/track'] = $this->provider().'/TrackServiceProvider.php'; |
| 106 | - $this->touch['test/testcase'] = $this->test().'/TestCase.php'; |
|
| 106 | + $this->touch['test/testcase'] = $this->test().'/TestCase.php'; |
|
| 107 | 107 | $this->touch['kernel/consoleevent'] = $this->provider().'/ConsoleEventServiceProvider.php'; |
| 108 | 108 | $this->touch['middleware/authenticate'] = $this->middleware().'/Authenticate.php'; |
| 109 | 109 | $this->touch['middleware/ratelimit'] = $this->middleware().'/RateLimit.php'; |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | $this->touch['app/gitignore'] = $this->projectPath().'/.gitignore'; |
| 145 | 145 | $this->touch['app/composer'] = $this->projectPath().'/composer.json'; |
| 146 | 146 | $this->touch['test/index'] = $this->storage().'/index.html'; |
| 147 | - $this->touch['exception/authenticate'] = $this->directory['exceptionDir'] .'/AuthenticateException.php'; |
|
| 147 | + $this->touch['exception/authenticate'] = $this->directory['exceptionDir'].'/AuthenticateException.php'; |
|
| 148 | 148 | |
| 149 | 149 | //set project touch |
| 150 | 150 | $this->file->touch($this); |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | /** |
| 16 | 16 | * @var $type |
| 17 | 17 | */ |
| 18 | - public $type='model'; |
|
| 18 | + public $type = 'model'; |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * @var array |
@@ -32,17 +32,17 @@ discard block |
||
| 32 | 32 | /** |
| 33 | 33 | * @var $commandRule |
| 34 | 34 | */ |
| 35 | - public $commandRule=['model','?table']; |
|
| 35 | + public $commandRule = ['model', '?table']; |
|
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * @method create |
| 39 | 39 | * @return mixed |
| 40 | 40 | */ |
| 41 | - public function create(){
|
|
| 41 | + public function create() {
|
|
| 42 | 42 | |
| 43 | 43 | $this->argument['file'] = $this->argument['model']; |
| 44 | 44 | |
| 45 | - if(!isset($this->argument['table'])){
|
|
| 45 | + if (!isset($this->argument['table'])) {
|
|
| 46 | 46 | $this->argument['table'] = $this->argument['file'].'s'; |
| 47 | 47 | } |
| 48 | 48 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | $this->directory['modelDir'] = app()->path()->model(); |
| 53 | 53 | $this->directory['builderDir'] = $this->directory['modelDir'].'/Builder'; |
| 54 | - $this->directory['builderAssistantDir'] = $this->directory['modelDir'].'/Builder/Assistant'; |
|
| 54 | + $this->directory['builderAssistantDir'] = $this->directory['modelDir'].'/Builder/Assistant'; |
|
| 55 | 55 | $this->directory['contract'] = $this->directory['modelDir'].'/Contract'; |
| 56 | 56 | $this->directory['helper'] = $this->directory['modelDir'].'/Helper'; |
| 57 | 57 | |
@@ -66,22 +66,22 @@ discard block |
||
| 66 | 66 | //model set |
| 67 | 67 | $this->touch['model/model'] = $this->directory['modelDir'].''.DIRECTORY_SEPARATOR.''.$this->argument['file'].'.php'; |
| 68 | 68 | $this->touch['model/builder'] = $this->directory['builderDir'].''.DIRECTORY_SEPARATOR.''.$this->argument['file'].'Builder.php'; |
| 69 | - $this->touch['model/builderasistant'] = $this->directory['builderAssistantDir'].''.DIRECTORY_SEPARATOR.'Builder.php'; |
|
| 69 | + $this->touch['model/builderasistant'] = $this->directory['builderAssistantDir'].''.DIRECTORY_SEPARATOR.'Builder.php'; |
|
| 70 | 70 | $this->touch['model/contract'] = $this->directory['contract'].''.DIRECTORY_SEPARATOR.''.$this->argument['file'].'Contract.php'; |
| 71 | 71 | |
| 72 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php')){
|
|
| 72 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php')) {
|
|
| 73 | 73 | $this->touch['model/scope'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php'; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Event.php')){
|
|
| 76 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Event.php')) {
|
|
| 77 | 77 | $this->touch['model/event'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Event.php'; |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'TableChanges.php')){
|
|
| 80 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'TableChanges.php')) {
|
|
| 81 | 81 | $this->touch['model/tablechanges'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'TableChanges.php'; |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Constructor.php')){
|
|
| 84 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Constructor.php')) {
|
|
| 85 | 85 | $this->touch['model/constructor'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Constructor.php'; |
| 86 | 86 | } |
| 87 | 87 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $entityDir = $this->directory['modelDir'].''.DIRECTORY_SEPARATOR.'Entity'; |
| 91 | 91 | |
| 92 | - if(!file_exists($entityDir)){
|
|
| 92 | + if (!file_exists($entityDir)) {
|
|
| 93 | 93 | files()->makeDirectory($entityDir); |
| 94 | 94 | } |
| 95 | 95 | |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | $entityClass = $entityDir.''.DIRECTORY_SEPARATOR.''.$entityTableName.''.DIRECTORY_SEPARATOR.''.$entityTableName; |
| 99 | 99 | |
| 100 | 100 | |
| 101 | - $generator = new Generator($entityDir,'EntityMap'); |
|
| 101 | + $generator = new Generator($entityDir, 'EntityMap'); |
|
| 102 | 102 | |
| 103 | - if(!file_exists($entityDir.''.DIRECTORY_SEPARATOR.'EntityMap.php')){
|
|
| 103 | + if (!file_exists($entityDir.''.DIRECTORY_SEPARATOR.'EntityMap.php')) {
|
|
| 104 | 104 | |
| 105 | 105 | //$this->setAnnotations(); |
| 106 | 106 | $generator->createClass(); |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | |
| 111 | 111 | $entityMapNamespaceResolve = new $entityMapNamespace; |
| 112 | 112 | |
| 113 | - if(!method_exists($entityMapNamespaceResolve,strtolower($this->argument['table']))){
|
|
| 113 | + if (!method_exists($entityMapNamespaceResolve, strtolower($this->argument['table']))) {
|
|
| 114 | 114 | |
| 115 | 115 | $generator->createClassUse([ |
| 116 | 116 | Utils::getNamespace($entityClass) |
@@ -140,15 +140,15 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | |
| 142 | 142 | //set builder map |
| 143 | - $generator = new Generator($this->directory['builderDir'],'BuilderMap'); |
|
| 143 | + $generator = new Generator($this->directory['builderDir'], 'BuilderMap'); |
|
| 144 | 144 | |
| 145 | - if(!file_exists($this->directory['builderDir'].''.DIRECTORY_SEPARATOR.'BuilderMap.php')){
|
|
| 145 | + if (!file_exists($this->directory['builderDir'].''.DIRECTORY_SEPARATOR.'BuilderMap.php')) {
|
|
| 146 | 146 | |
| 147 | 147 | $this->setAnnotations(); |
| 148 | 148 | $generator->createClass(); |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - if(!file_exists($this->touch['model/model'])){
|
|
| 151 | + if (!file_exists($this->touch['model/model'])) {
|
|
| 152 | 152 | |
| 153 | 153 | $generator->createMethod([ |
| 154 | 154 | strtolower($this->argument['file']) |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | //set project touch |
| 172 | - $this->file->touch($this,[ |
|
| 172 | + $this->file->touch($this, [ |
|
| 173 | 173 | 'stub'=>'Model_Create' |
| 174 | 174 | ]); |
| 175 | 175 | |
@@ -180,11 +180,11 @@ discard block |
||
| 180 | 180 | /** |
| 181 | 181 | * @return bool |
| 182 | 182 | */ |
| 183 | - private function setAnnotations(){
|
|
| 183 | + private function setAnnotations() {
|
|
| 184 | 184 | |
| 185 | 185 | $entityMap = app()->path()->model().''.DIRECTORY_SEPARATOR.'Entity'.DIRECTORY_SEPARATOR.'EntityMap.php'; |
| 186 | 186 | |
| 187 | - if(file_exists($entityMap)){
|
|
| 187 | + if (file_exists($entityMap)) {
|
|
| 188 | 188 | |
| 189 | 189 | Utils::changeClass(path()->serviceAnnotations().'.php', |
| 190 | 190 | [ |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | {
|
| 32 | 32 | $this->config(); |
| 33 | 33 | |
| 34 | - if($this->guard=="default"){
|
|
| 34 | + if ($this->guard=="default") {
|
|
| 35 | 35 | $this->setAuthenticateNeeds(); |
| 36 | 36 | } |
| 37 | 37 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function getAddToWhere() |
| 59 | 59 | {
|
| 60 | - if(isset($this->config['guard'][$this->guard]['addToWhere'])){
|
|
| 60 | + if (isset($this->config['guard'][$this->guard]['addToWhere'])) {
|
|
| 61 | 61 | return $this->config['guard'][$this->guard]['addToWhere']; |
| 62 | 62 | } |
| 63 | 63 | return null; |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | */ |
| 71 | 71 | public function getConfigToken() |
| 72 | 72 | {
|
| 73 | - if(isset($this->config['guard'][$this->guard]['token'])){
|
|
| 73 | + if (isset($this->config['guard'][$this->guard]['token'])) {
|
|
| 74 | 74 | return $this->config['guard'][$this->guard]['token']; |
| 75 | 75 | } |
| 76 | 76 | return null; |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | public function provider($key) |
| 166 | 166 | {
|
| 167 | - if(app()->has('authenticate.'.$key) && is_callable($provider = app()->get('authenticate.'.$key))){
|
|
| 167 | + if (app()->has('authenticate.'.$key) && is_callable($provider = app()->get('authenticate.'.$key))) {
|
|
| 168 | 168 | return $provider; |
| 169 | 169 | } |
| 170 | 170 | |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | {
|
| 204 | 204 | $table = $this->config['guard'][$this->guard]['table']; |
| 205 | 205 | |
| 206 | - app()->register('authenticateTable',$table);
|
|
| 206 | + app()->register('authenticateTable', $table);
|
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | } |
| 210 | 210 | \ No newline at end of file |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * @param callable|null $func |
| 13 | 13 | * @return string |
| 14 | 14 | */ |
| 15 | - public function getNamespaceForAutoService($instance,callable $func = null) |
|
| 15 | + public function getNamespaceForAutoService($instance, callable $func = null) |
|
| 16 | 16 | {
|
| 17 | 17 | //get namespace for auto service |
| 18 | 18 | $autoServiceNamespace = $instance->autoService(); |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $configAutoServices = config('autoservices');
|
| 23 | 23 | |
| 24 | 24 | //auto service is invoked if auto service is allowed for any class yada config. |
| 25 | - if(class_exists($autoServiceNamespace) && isset($configAutoServices[strtolower(endpoint)])){
|
|
| 25 | + if (class_exists($autoServiceNamespace) && isset($configAutoServices[strtolower(endpoint)])) {
|
|
| 26 | 26 | return $autoServiceNamespace; |
| 27 | 27 | } |
| 28 | 28 | |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | * |
| 70 | 70 | * @throws ReflectionExceptionAlias |
| 71 | 71 | */ |
| 72 | - public function __construct($clientData=null) |
|
| 72 | + public function __construct($clientData = null) |
|
| 73 | 73 | {
|
| 74 | 74 | //reflection process |
| 75 | 75 | $this->reflection = app()['reflection']($this); |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | $this->setClientName(); |
| 79 | 79 | |
| 80 | 80 | //get http method via request http manager class |
| 81 | - $this->requestHttp = app()->resolve(ClientHttpManager::class,['client'=>$this]); |
|
| 81 | + $this->requestHttp = app()->resolve(ClientHttpManager::class, ['client'=>$this]); |
|
| 82 | 82 | |
| 83 | 83 | //get request client data |
| 84 | 84 | $this->clientData = ($clientData===null) ? $this->requestHttp->resolve() : $clientData; |
@@ -95,9 +95,9 @@ discard block |
||
| 95 | 95 | private function autoValidate($validate) |
| 96 | 96 | {
|
| 97 | 97 | //we get the values to auto-validate. |
| 98 | - foreach ($this->{$validate} as $object=>$datas){
|
|
| 98 | + foreach ($this->{$validate} as $object=>$datas) {
|
|
| 99 | 99 | |
| 100 | - if(false===Utils::isNamespaceExists($object)){
|
|
| 100 | + if (false===Utils::isNamespaceExists($object)) {
|
|
| 101 | 101 | return; |
| 102 | 102 | } |
| 103 | 103 | |
@@ -107,30 +107,30 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | // we get the index values, |
| 109 | 109 | // which are called methods of the auto-validate value that represents the class. |
| 110 | - foreach ($datas as $dataKey=>$data){
|
|
| 110 | + foreach ($datas as $dataKey=>$data) {
|
|
| 111 | 111 | |
| 112 | 112 | // if the methods of the auto-validate class resolved by the container resolve method apply, |
| 113 | 113 | // the process of auto-validate automatic implementation will be completed. |
| 114 | - if(method_exists($getObjectInstance,$dataKey) && is_array($data)){
|
|
| 115 | - foreach ($data as $dataItem){
|
|
| 116 | - if(isset($this->origin[$dataItem])){
|
|
| 117 | - $getObjectInstance->{$dataKey}($this->origin[$dataItem],$this,$dataItem);
|
|
| 114 | + if (method_exists($getObjectInstance, $dataKey) && is_array($data)) {
|
|
| 115 | + foreach ($data as $dataItem) {
|
|
| 116 | + if (isset($this->origin[$dataItem])) {
|
|
| 117 | + $getObjectInstance->{$dataKey}($this->origin[$dataItem], $this, $dataItem);
|
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - if(method_exists($this,$afterMethod = 'after'.ucfirst($dataKey))){
|
|
| 121 | - $this->{$afterMethod}($this,$dataItem);
|
|
| 120 | + if (method_exists($this, $afterMethod = 'after'.ucfirst($dataKey))) {
|
|
| 121 | + $this->{$afterMethod}($this, $dataItem);
|
|
| 122 | 122 | } |
| 123 | 123 | } |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | // if the methods of the auto-validate class resolved by the container resolve method apply, |
| 127 | 127 | // the process of auto-validate automatic implementation will be completed. |
| 128 | - if(is_numeric($dataKey) && method_exists($getObjectInstance,$data) && isset($this->origin[$data])){
|
|
| 129 | - if(!is_array($this->origin[$data])){
|
|
| 128 | + if (is_numeric($dataKey) && method_exists($getObjectInstance, $data) && isset($this->origin[$data])) {
|
|
| 129 | + if (!is_array($this->origin[$data])) {
|
|
| 130 | 130 | $this->origin[$data] = array($this->origin[$data]); |
| 131 | 131 | } |
| 132 | - foreach ($this->origin[$data] as $originData){
|
|
| 133 | - $getObjectInstance->{$data}($originData,$this,$data);
|
|
| 132 | + foreach ($this->origin[$data] as $originData) {
|
|
| 133 | + $getObjectInstance->{$data}($originData, $this, $data);
|
|
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | } |
@@ -145,39 +145,39 @@ discard block |
||
| 145 | 145 | private function capsule() |
| 146 | 146 | {
|
| 147 | 147 | //a process can be added to the capsule array using the method. |
| 148 | - if(method_exists($this,'capsuleMethod')){
|
|
| 149 | - $this->capsule = array_merge($this->capsule,$this->capsuleMethod()); |
|
| 148 | + if (method_exists($this, 'capsuleMethod')) {
|
|
| 149 | + $this->capsule = array_merge($this->capsule, $this->capsuleMethod()); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | // expected method is executed. |
| 153 | 153 | // this method is a must for http method values to be found in this property. |
| 154 | - if($this->checkProperties('capsule')){
|
|
| 154 | + if ($this->checkProperties('capsule')) {
|
|
| 155 | 155 | |
| 156 | - if(property_exists($this,'auto_capsule') && is_array($this->auto_capsule)){
|
|
| 157 | - $this->capsule = array_merge($this->capsule,$this->auto_capsule); |
|
| 156 | + if (property_exists($this, 'auto_capsule') && is_array($this->auto_capsule)) {
|
|
| 157 | + $this->capsule = array_merge($this->capsule, $this->auto_capsule); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - if($this->checkProperties('groups')){
|
|
| 161 | - $this->capsule = array_merge($this->capsule,$this->groups); |
|
| 160 | + if ($this->checkProperties('groups')) {
|
|
| 161 | + $this->capsule = array_merge($this->capsule, $this->groups); |
|
| 162 | 162 | |
| 163 | 163 | foreach ($this->capsule as $item) {
|
| 164 | - $groupProcess = $this->groupsProcess($item,true); |
|
| 165 | - if(is_array($groupProcess)){
|
|
| 164 | + $groupProcess = $this->groupsProcess($item, true); |
|
| 165 | + if (is_array($groupProcess)) {
|
|
| 166 | 166 | $defaultInputs = $this->inputs; |
| 167 | - $this->inputs = array_merge($this->inputs,$groupProcess); |
|
| 167 | + $this->inputs = array_merge($this->inputs, $groupProcess); |
|
| 168 | 168 | } |
| 169 | 169 | } |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - foreach($this->inputs as $input=>$value){
|
|
| 172 | + foreach ($this->inputs as $input=>$value) {
|
|
| 173 | 173 | |
| 174 | - if($this->checkProperties('capsule') && !in_array($input,$this->capsule)){
|
|
| 175 | - exception('clientCapsule',['key'=>$input])
|
|
| 174 | + if ($this->checkProperties('capsule') && !in_array($input, $this->capsule)) {
|
|
| 175 | + exception('clientCapsule', ['key'=>$input])
|
|
| 176 | 176 | ->overflow('The '.$input.' value cannot be sent.');
|
| 177 | 177 | } |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - if(isset($defaultInputs)){
|
|
| 180 | + if (isset($defaultInputs)) {
|
|
| 181 | 181 | $this->inputs = $defaultInputs; |
| 182 | 182 | } |
| 183 | 183 | } |
@@ -195,15 +195,15 @@ discard block |
||
| 195 | 195 | |
| 196 | 196 | // Determines which HTTP method |
| 197 | 197 | // the request object will be exposed to. |
| 198 | - if($this->checkProperties('http')){
|
|
| 198 | + if ($this->checkProperties('http')) {
|
|
| 199 | 199 | |
| 200 | 200 | // if the current http method does not exist |
| 201 | 201 | // in the http object, the exception will be thrown. |
| 202 | - if(!in_array($method,$this->http)){
|
|
| 202 | + if (!in_array($method, $this->http)) {
|
|
| 203 | 203 | |
| 204 | 204 | //exception batMethodCall |
| 205 | 205 | exception()->badMethodCall( |
| 206 | - 'Invalid http method process for '.basename($this).'.That is accepted http methods ['.implode(",",$this->http).'] ');
|
|
| 206 | + 'Invalid http method process for '.basename($this).'.That is accepted http methods ['.implode(",", $this->http).'] ');
|
|
| 207 | 207 | } |
| 208 | 208 | } |
| 209 | 209 | } |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | {
|
| 219 | 219 | // from the properties of the object properties to |
| 220 | 220 | // the existing variables, control the array and at least one element. |
| 221 | - return (property_exists($this,$properties) |
|
| 221 | + return (property_exists($this, $properties) |
|
| 222 | 222 | && is_array($this->{$properties}) && count($this->{$properties})) ? true : false;
|
| 223 | 223 | } |
| 224 | 224 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | {
|
| 232 | 232 | // we are saving the expected values for the request in container. |
| 233 | 233 | // this record can be returned in exception information. |
| 234 | - app()->register('requestExpected',$this->expected);
|
|
| 234 | + app()->register('requestExpected', $this->expected);
|
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -243,15 +243,15 @@ discard block |
||
| 243 | 243 | public function except($except) |
| 244 | 244 | {
|
| 245 | 245 | // the except parameter is a callable value. |
| 246 | - if(is_callable($except)){
|
|
| 247 | - $call = call_user_func_array($except,[$this]); |
|
| 246 | + if (is_callable($except)) {
|
|
| 247 | + $call = call_user_func_array($except, [$this]); |
|
| 248 | 248 | $except = $call; |
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | // except with the except exceptions property |
| 252 | 252 | // and then assigning them to the inputs property. |
| 253 | - $this->except = array_merge($this->except,$except); |
|
| 254 | - $this->inputs = array_diff_key($this->inputs,array_flip($this->except)); |
|
| 253 | + $this->except = array_merge($this->except, $except); |
|
| 254 | + $this->inputs = array_diff_key($this->inputs, array_flip($this->except)); |
|
| 255 | 255 | |
| 256 | 256 | return $this; |
| 257 | 257 | } |
@@ -265,32 +265,32 @@ discard block |
||
| 265 | 265 | {
|
| 266 | 266 | // expected method is executed. |
| 267 | 267 | // this method is a must for http method values to be found in this property. |
| 268 | - if($this->checkProperties('expected')){
|
|
| 268 | + if ($this->checkProperties('expected')) {
|
|
| 269 | 269 | |
| 270 | 270 | // if the expected values are not found in the inputs array, |
| 271 | 271 | // the exception will be thrown. |
| 272 | - foreach ($this->expected as $expected){
|
|
| 272 | + foreach ($this->expected as $expected) {
|
|
| 273 | 273 | |
| 274 | 274 | $expectedValues = []; |
| 275 | 275 | |
| 276 | 276 | // mandatory expected data for each key can be separated by | operator. |
| 277 | 277 | // this is evaluated as "or". |
| 278 | - foreach($expectedData = explode("|",$expected) as $inputs){
|
|
| 278 | + foreach ($expectedData = explode("|", $expected) as $inputs) {
|
|
| 279 | 279 | |
| 280 | 280 | // we should do key control for group format. |
| 281 | 281 | // this process will allow us to perform key control for 2D array correctly. |
| 282 | 282 | $this->groupsProcess($inputs); |
| 283 | 283 | |
| 284 | - if(!isset($this->inputs[$inputs])){
|
|
| 284 | + if (!isset($this->inputs[$inputs])) {
|
|
| 285 | 285 | $expectedValues[$inputs] = $inputs; |
| 286 | 286 | } |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | // if the expectedData and expectedValues |
| 290 | 290 | // array are numerically equal to the expected key, the exception is thrown. |
| 291 | - if(count($expectedData)===count($expectedValues)){
|
|
| 292 | - exception('clientExpected',['key'=>$expected])
|
|
| 293 | - ->unexpectedValue('You absolutely have to send the value '.implode(" or ",$expectedValues).' for request object');
|
|
| 291 | + if (count($expectedData)===count($expectedValues)) {
|
|
| 292 | + exception('clientExpected', ['key'=>$expected])
|
|
| 293 | + ->unexpectedValue('You absolutely have to send the value '.implode(" or ", $expectedValues).' for request object');
|
|
| 294 | 294 | } |
| 295 | 295 | } |
| 296 | 296 | } |
@@ -305,17 +305,17 @@ discard block |
||
| 305 | 305 | {
|
| 306 | 306 | // check the presence of the generator object |
| 307 | 307 | // and operate the generator over this object. |
| 308 | - if($this->checkProperties('auto_generators')){
|
|
| 308 | + if ($this->checkProperties('auto_generators')) {
|
|
| 309 | 309 | $generators = $this->getAutoGenerators(); |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | 312 | // check the presence of the generator object |
| 313 | 313 | // and operate the generator over this object. |
| 314 | - if($this->checkProperties('generators')){
|
|
| 315 | - $generators = array_merge(isset($generators) ? $generators: [],$this->getGenerators()); |
|
| 314 | + if ($this->checkProperties('generators')) {
|
|
| 315 | + $generators = array_merge(isset($generators) ? $generators : [], $this->getGenerators()); |
|
| 316 | 316 | } |
| 317 | 317 | |
| 318 | - if(isset($generators)){
|
|
| 318 | + if (isset($generators)) {
|
|
| 319 | 319 | $this->generatorMethod($generators); |
| 320 | 320 | } |
| 321 | 321 | } |
@@ -330,21 +330,21 @@ discard block |
||
| 330 | 330 | private function generatorMethod($generators) |
| 331 | 331 | {
|
| 332 | 332 | //generator array object |
| 333 | - foreach ($generators as $generator){
|
|
| 333 | + foreach ($generators as $generator) {
|
|
| 334 | 334 | |
| 335 | 335 | //generator method name |
| 336 | 336 | $generatorMethodName = $generator.'Generator'; |
| 337 | 337 | |
| 338 | 338 | // if the generator method is present, |
| 339 | 339 | // the fake value is assigned. |
| 340 | - if(method_exists($this,$generatorMethodName)){
|
|
| 340 | + if (method_exists($this, $generatorMethodName)) {
|
|
| 341 | 341 | |
| 342 | 342 | //fake registration |
| 343 | - if(!isset($this->inputs[$generator])){
|
|
| 343 | + if (!isset($this->inputs[$generator])) {
|
|
| 344 | 344 | |
| 345 | 345 | $generatorMethodNameResult = $this->{$generatorMethodName}();
|
| 346 | 346 | |
| 347 | - if(!is_null($generatorMethodNameResult)){
|
|
| 347 | + if (!is_null($generatorMethodNameResult)) {
|
|
| 348 | 348 | $this->{$generator} = $this->{$generatorMethodName}();
|
| 349 | 349 | $this->inputs[$generator] = $this->{$generatorMethodName}();
|
| 350 | 350 | $this->generatorList[] = $generator; |
@@ -352,15 +352,15 @@ discard block |
||
| 352 | 352 | } |
| 353 | 353 | else {
|
| 354 | 354 | |
| 355 | - if($this->checkProperties('auto_generators_dont_overwrite')
|
|
| 356 | - && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){
|
|
| 355 | + if ($this->checkProperties('auto_generators_dont_overwrite')
|
|
| 356 | + && in_array($generator, $this->getAutoGeneratorsDontOverwrite())) {
|
|
| 357 | 357 | $this->{$generator} = $this->{$generatorMethodName}();
|
| 358 | 358 | $this->inputs[$generator] = $this->{$generatorMethodName}();
|
| 359 | 359 | $this->generatorList[] = $generator; |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | - if($this->checkProperties('generators_dont_overwrite')
|
|
| 363 | - && in_array($generator,$this->getGeneratorsDontOverwrite())){
|
|
| 362 | + if ($this->checkProperties('generators_dont_overwrite')
|
|
| 363 | + && in_array($generator, $this->getGeneratorsDontOverwrite())) {
|
|
| 364 | 364 | $this->{$generator} = $this->{$generatorMethodName}();
|
| 365 | 365 | $this->inputs[$generator] = $this->{$generatorMethodName}();
|
| 366 | 366 | $this->generatorList[] = $generator; |
@@ -391,28 +391,28 @@ discard block |
||
| 391 | 391 | * @param null $callback |
| 392 | 392 | * @return mixed|void |
| 393 | 393 | */ |
| 394 | - public function groupsProcess($key=null,$callback=null) |
|
| 394 | + public function groupsProcess($key = null, $callback = null) |
|
| 395 | 395 | {
|
| 396 | - if(property_exists($this,'groups') && is_array($this->groups)){
|
|
| 396 | + if (property_exists($this, 'groups') && is_array($this->groups)) {
|
|
| 397 | 397 | |
| 398 | 398 | $clientObjects = $this->getClientObjects(); |
| 399 | 399 | |
| 400 | - foreach ($this->groups as $group){
|
|
| 400 | + foreach ($this->groups as $group) {
|
|
| 401 | 401 | |
| 402 | - if(true === $callback){
|
|
| 403 | - if(isset($clientObjects['origin'][$key])){
|
|
| 402 | + if (true===$callback) {
|
|
| 403 | + if (isset($clientObjects['origin'][$key])) {
|
|
| 404 | 404 | return $clientObjects['origin'][$key]; |
| 405 | 405 | } |
| 406 | 406 | return []; |
| 407 | 407 | } |
| 408 | 408 | |
| 409 | - if(isset($clientObjects['origin'][$group][$key])){
|
|
| 409 | + if (isset($clientObjects['origin'][$group][$key])) {
|
|
| 410 | 410 | |
| 411 | 411 | $this->{$key} = $clientObjects['origin'][$group][$key];
|
| 412 | 412 | $this->inputs[$key] = $this->{$key};
|
| 413 | 413 | |
| 414 | - if(is_callable($callback)){
|
|
| 415 | - call_user_func_array($callback,[$key]); |
|
| 414 | + if (is_callable($callback)) {
|
|
| 415 | + call_user_func_array($callback, [$key]); |
|
| 416 | 416 | } |
| 417 | 417 | } |
| 418 | 418 | } |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | {
|
| 476 | 476 | // we use the http method to write |
| 477 | 477 | // the values to the inputs and origin properties. |
| 478 | - foreach($this->clientData as $key=>$value){
|
|
| 478 | + foreach ($this->clientData as $key=>$value) {
|
|
| 479 | 479 | |
| 480 | 480 | //inputs and origin properties |
| 481 | 481 | $this->inputs[$key] = $value; |
@@ -491,9 +491,9 @@ discard block |
||
| 491 | 491 | */ |
| 492 | 492 | private function requestExcept() |
| 493 | 493 | {
|
| 494 | - if(property_exists($this,'requestExcept') && is_array($this->requestExcept)){
|
|
| 495 | - foreach ($this->requestExcept as $item){
|
|
| 496 | - if(isset($this->inputs[$item])){
|
|
| 494 | + if (property_exists($this, 'requestExcept') && is_array($this->requestExcept)) {
|
|
| 495 | + foreach ($this->requestExcept as $item) {
|
|
| 496 | + if (isset($this->inputs[$item])) {
|
|
| 497 | 497 | unset($this->inputs[$item]); |
| 498 | 498 | } |
| 499 | 499 | } |
@@ -506,16 +506,16 @@ discard block |
||
| 506 | 506 | * @param null|string $clientName |
| 507 | 507 | * @return void|mixed |
| 508 | 508 | */ |
| 509 | - public function setClientName($clientName=null) |
|
| 509 | + public function setClientName($clientName = null) |
|
| 510 | 510 | {
|
| 511 | - if(!is_null($clientName) && is_string($clientName)){
|
|
| 511 | + if (!is_null($clientName) && is_string($clientName)) {
|
|
| 512 | 512 | return $this->clientName = $clientName; |
| 513 | 513 | } |
| 514 | 514 | |
| 515 | - if(!is_null(Utils::trace(0)) && isset(Utils::trace(0)['object'])){
|
|
| 515 | + if (!is_null(Utils::trace(0)) && isset(Utils::trace(0)['object'])) {
|
|
| 516 | 516 | $backTrace = Utils::trace(0)['object']; |
| 517 | 517 | |
| 518 | - if(property_exists($backTrace,'clientName')){
|
|
| 518 | + if (property_exists($backTrace, 'clientName')) {
|
|
| 519 | 519 | $this->clientName = $backTrace->clientName; |
| 520 | 520 | } |
| 521 | 521 | } |
@@ -532,16 +532,16 @@ discard block |
||
| 532 | 532 | |
| 533 | 533 | // we update the input values after |
| 534 | 534 | // we receive and check the saved objects. |
| 535 | - foreach ($clientObjects as $key=>$value){
|
|
| 535 | + foreach ($clientObjects as $key=>$value) {
|
|
| 536 | 536 | |
| 537 | 537 | // we should do key control for group format. |
| 538 | 538 | // this process will allow us to perform key control for 2D array correctly. |
| 539 | - $this->groupsProcess($key,function($key){
|
|
| 539 | + $this->groupsProcess($key, function($key) {
|
|
| 540 | 540 | $this->registerRequestInputs($key); |
| 541 | 541 | unset($this->inputs[$key]); |
| 542 | 542 | }); |
| 543 | 543 | |
| 544 | - if(!in_array($key,$this->generatorList) && isset($clientObjects['origin'][$key])){
|
|
| 544 | + if (!in_array($key, $this->generatorList) && isset($clientObjects['origin'][$key])) {
|
|
| 545 | 545 | |
| 546 | 546 | $this->{$key} = $clientObjects['origin'][$key];
|
| 547 | 547 | $this->inputs[$key] = $this->{$key};
|
@@ -569,11 +569,11 @@ discard block |
||
| 569 | 569 | |
| 570 | 570 | // the request update to be performed using |
| 571 | 571 | // the method name to be used with the http method. |
| 572 | - $this->setRequestInputs($requestMethod,$key); |
|
| 572 | + $this->setRequestInputs($requestMethod, $key); |
|
| 573 | 573 | |
| 574 | 574 | // the request update to be performed using |
| 575 | 575 | // the method name to be used without the http method. |
| 576 | - $this->setRequestInputs($key,$key); |
|
| 576 | + $this->setRequestInputs($key, $key); |
|
| 577 | 577 | } |
| 578 | 578 | |
| 579 | 579 | /** |
@@ -584,28 +584,28 @@ discard block |
||
| 584 | 584 | * |
| 585 | 585 | * @throws ReflectionExceptionAlias |
| 586 | 586 | */ |
| 587 | - private function setRequestInputs($method,$key) |
|
| 587 | + private function setRequestInputs($method, $key) |
|
| 588 | 588 | {
|
| 589 | - if(!in_array($key,$this->generatorList) && method_exists($this,$method) && $this->reflection->reflectionMethodParams($method)->isProtected){
|
|
| 589 | + if (!in_array($key, $this->generatorList) && method_exists($this, $method) && $this->reflection->reflectionMethodParams($method)->isProtected) {
|
|
| 590 | 590 | |
| 591 | 591 | //check annotations for method |
| 592 | - $annotation = app()->resolve(ClientAnnotationManager::class,['request'=>$this]); |
|
| 593 | - $annotation->annotation($method,$key); |
|
| 592 | + $annotation = app()->resolve(ClientAnnotationManager::class, ['request'=>$this]); |
|
| 593 | + $annotation->annotation($method, $key); |
|
| 594 | 594 | |
| 595 | - if(isset($this->inputs[$key]) && is_array($this->inputs[$key])){
|
|
| 595 | + if (isset($this->inputs[$key]) && is_array($this->inputs[$key])) {
|
|
| 596 | 596 | |
| 597 | 597 | $inputKeys = $this->inputs[$key]; |
| 598 | 598 | |
| 599 | 599 | $this->inputs[$key] = []; |
| 600 | - foreach ($inputKeys as $ikey=>$input){
|
|
| 600 | + foreach ($inputKeys as $ikey=>$input) {
|
|
| 601 | 601 | |
| 602 | 602 | $this->{$key}[$ikey] = $input;
|
| 603 | 603 | $keyMethod = $this->{$method}();
|
| 604 | 604 | $this->inputs[$key] = $keyMethod; |
| 605 | 605 | } |
| 606 | 606 | } |
| 607 | - else{
|
|
| 608 | - if(isset($this->inputs[$key])){
|
|
| 607 | + else {
|
|
| 608 | + if (isset($this->inputs[$key])) {
|
|
| 609 | 609 | $keyMethod = $this->{$method}();
|
| 610 | 610 | $this->inputs[$key] = $keyMethod; |
| 611 | 611 | } |
@@ -624,8 +624,8 @@ discard block |
||
| 624 | 624 | // the auto object validate property is the property |
| 625 | 625 | // where all of your request values are automatically validated. |
| 626 | 626 | /** @noinspection PhpParamsInspection */ |
| 627 | - if(property_exists($this,'autoObjectValidate') |
|
| 628 | - && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)){
|
|
| 627 | + if (property_exists($this, 'autoObjectValidate') |
|
| 628 | + && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)) {
|
|
| 629 | 629 | $this->autoValidate('autoObjectValidate');
|
| 630 | 630 | } |
| 631 | 631 | } |
@@ -349,8 +349,7 @@ discard block |
||
| 349 | 349 | $this->inputs[$generator] = $this->{$generatorMethodName}();
|
| 350 | 350 | $this->generatorList[] = $generator; |
| 351 | 351 | } |
| 352 | - } |
|
| 353 | - else {
|
|
| 352 | + } else {
|
|
| 354 | 353 | |
| 355 | 354 | if($this->checkProperties('auto_generators_dont_overwrite')
|
| 356 | 355 | && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){
|
@@ -603,8 +602,7 @@ discard block |
||
| 603 | 602 | $keyMethod = $this->{$method}();
|
| 604 | 603 | $this->inputs[$key] = $keyMethod; |
| 605 | 604 | } |
| 606 | - } |
|
| 607 | - else{
|
|
| 605 | + } else{
|
|
| 608 | 606 | if(isset($this->inputs[$key])){
|
| 609 | 607 | $keyMethod = $this->{$method}();
|
| 610 | 608 | $this->inputs[$key] = $keyMethod; |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | {
|
| 52 | 52 | $userId = $manager->getAuth()->params['userId']; |
| 53 | 53 | |
| 54 | - return DeviceToken::where('user_id',$userId)->get();
|
|
| 54 | + return DeviceToken::where('user_id', $userId)->get();
|
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /** |
@@ -64,8 +64,8 @@ discard block |
||
| 64 | 64 | return DeviceToken::where(function($query) use($token) {
|
| 65 | 65 | |
| 66 | 66 | //where query for token |
| 67 | - $query->where('token_integer',crc32(md5($token)));
|
|
| 68 | - $query->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])));
|
|
| 67 | + $query->where('token_integer', crc32(md5($token)));
|
|
| 68 | + $query->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT'])));
|
|
| 69 | 69 | }); |
| 70 | 70 | } |
| 71 | 71 | |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | return DeviceToken::where(function($query) use($token) {
|
| 80 | 80 | |
| 81 | 81 | //where query for token |
| 82 | - $query->where('token_integer',crc32(md5($token)));
|
|
| 83 | - $query->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])));
|
|
| 82 | + $query->where('token_integer', crc32(md5($token)));
|
|
| 83 | + $query->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT'])));
|
|
| 84 | 84 | |
| 85 | 85 | }); |
| 86 | 86 | } |
@@ -91,23 +91,23 @@ discard block |
||
| 91 | 91 | * @param null|object $query |
| 92 | 92 | * @return mixed |
| 93 | 93 | */ |
| 94 | - protected function checkPasswordVerify($query=null) |
|
| 94 | + protected function checkPasswordVerify($query = null) |
|
| 95 | 95 | {
|
| 96 | - if(is_null($query) && isset($this->credentials['password'])){
|
|
| 97 | - if(!is_null($password = $this->auth->provider('password'))
|
|
| 98 | - && $password($this->credentials['password'])=='verify'){
|
|
| 96 | + if (is_null($query) && isset($this->credentials['password'])) {
|
|
| 97 | + if (!is_null($password = $this->auth->provider('password'))
|
|
| 98 | + && $password($this->credentials['password'])=='verify') {
|
|
| 99 | 99 | |
| 100 | 100 | $this->password = $this->credentials['password']; |
| 101 | 101 | $this->passwordVerify = true; |
| 102 | - $this->credentials = Arr::removeKey($this->credentials,['password']); |
|
| 102 | + $this->credentials = Arr::removeKey($this->credentials, ['password']); |
|
| 103 | 103 | |
| 104 | 104 | return null; |
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - if(is_object($query) && $query->count()){
|
|
| 108 | + if (is_object($query) && $query->count()) {
|
|
| 109 | 109 | $password = $query->first()->password; |
| 110 | - if(password_verify($this->password,$password)){
|
|
| 110 | + if (password_verify($this->password, $password)) {
|
|
| 111 | 111 | return $query; |
| 112 | 112 | } |
| 113 | 113 | } |
@@ -137,24 +137,24 @@ discard block |
||
| 137 | 137 | |
| 138 | 138 | // with the callback method (eloquent model) |
| 139 | 139 | // we write the where clause. |
| 140 | - foreach ($this->credentials as $credential=>$credentialValue){
|
|
| 140 | + foreach ($this->credentials as $credential=>$credentialValue) {
|
|
| 141 | 141 | |
| 142 | - if(!is_null($provider = $this->auth->provider($credential))){
|
|
| 143 | - $query->where($credential,$provider($credentialValue)); |
|
| 142 | + if (!is_null($provider = $this->auth->provider($credential))) {
|
|
| 143 | + $query->where($credential, $provider($credentialValue)); |
|
| 144 | 144 | } |
| 145 | - else{
|
|
| 146 | - $query->where($credential,$credentialValue); |
|
| 145 | + else {
|
|
| 146 | + $query->where($credential, $credentialValue); |
|
| 147 | 147 | } |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | // for the authenticate query, |
| 151 | 151 | // the user can add additional queries by the service provider. |
| 152 | - if(!is_null($addQuery = $this->auth->provider('addQuery'))){
|
|
| 152 | + if (!is_null($addQuery = $this->auth->provider('addQuery'))) {
|
|
| 153 | 153 | $addQuery($query); |
| 154 | 154 | } |
| 155 | 155 | }); |
| 156 | 156 | |
| 157 | - if(false === $this->passwordVerify){
|
|
| 157 | + if (false===$this->passwordVerify) {
|
|
| 158 | 158 | return $query; |
| 159 | 159 | } |
| 160 | 160 | |
@@ -164,10 +164,10 @@ discard block |
||
| 164 | 164 | /** |
| 165 | 165 | * @return void|mixed |
| 166 | 166 | */ |
| 167 | - protected function updateToken($token=null) |
|
| 167 | + protected function updateToken($token = null) |
|
| 168 | 168 | {
|
| 169 | 169 | //if query status value is true |
| 170 | - if($this->auth->params['status']){
|
|
| 170 | + if ($this->auth->params['status']) {
|
|
| 171 | 171 | |
| 172 | 172 | // we go to the method that produces |
| 173 | 173 | // the classical token value and get the token value. |
@@ -177,13 +177,13 @@ discard block |
||
| 177 | 177 | // if there is no update, we reset the status value to 0. |
| 178 | 178 | $update = $this->auth->params['builder']->update(['token'=>$this->auth->params['token']]); |
| 179 | 179 | |
| 180 | - if(!$update){
|
|
| 180 | + if (!$update) {
|
|
| 181 | 181 | $this->auth->params['status'] = 0; |
| 182 | 182 | $this->auth->params['exception'] = 'update'; |
| 183 | 183 | } |
| 184 | - else{
|
|
| 185 | - if(!is_null($after = $this->auth->provider('after'))){
|
|
| 186 | - if(false === $after($this->auth->params['builder']->first())){
|
|
| 184 | + else {
|
|
| 185 | + if (!is_null($after = $this->auth->provider('after'))) {
|
|
| 186 | + if (false===$after($this->auth->params['builder']->first())) {
|
|
| 187 | 187 | $this->auth->params['status'] = 0; |
| 188 | 188 | $this->auth->params['exception'] = 'update'; |
| 189 | 189 | } |
@@ -203,10 +203,10 @@ discard block |
||
| 203 | 203 | {
|
| 204 | 204 | $token_integer = crc32(md5($this->auth->params['token'])); |
| 205 | 205 | |
| 206 | - if(!is_null($token_integer)){
|
|
| 206 | + if (!is_null($token_integer)) {
|
|
| 207 | 207 | |
| 208 | - if(DeviceToken::where('user_id',$this->auth->params['authId'])
|
|
| 209 | - ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])))->count()==0){
|
|
| 208 | + if (DeviceToken::where('user_id', $this->auth->params['authId'])
|
|
| 209 | + ->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT'])))->count()==0) {
|
|
| 210 | 210 | |
| 211 | 211 | return DeviceToken::create([ |
| 212 | 212 | 'user_id' => $this->auth->params['authId'], |
@@ -217,10 +217,10 @@ discard block |
||
| 217 | 217 | 'expire' => $this->auth->getExpire(), |
| 218 | 218 | ]); |
| 219 | 219 | } |
| 220 | - else{
|
|
| 220 | + else {
|
|
| 221 | 221 | |
| 222 | - return DeviceToken::where('user_id',$this->auth->params['authId'])
|
|
| 223 | - ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])))
|
|
| 222 | + return DeviceToken::where('user_id', $this->auth->params['authId'])
|
|
| 223 | + ->where('device_agent_integer', crc32(md5($_SERVER['HTTP_USER_AGENT'])))
|
|
| 224 | 224 | ->update([ |
| 225 | 225 | 'token' => $this->auth->params['token'], |
| 226 | 226 | 'token_integer' => $token_integer |
@@ -240,11 +240,11 @@ discard block |
||
| 240 | 240 | {
|
| 241 | 241 | $token_integer = crc32(md5($this->auth->getTokenSentByUser())); |
| 242 | 242 | |
| 243 | - if(!is_null($token_integer)){
|
|
| 243 | + if (!is_null($token_integer)) {
|
|
| 244 | 244 | |
| 245 | - DeviceToken::where('token_integer',$token_integer)->delete();
|
|
| 245 | + DeviceToken::where('token_integer', $token_integer)->delete();
|
|
| 246 | 246 | |
| 247 | - return (DeviceToken::where('token_integer',$token_integer)->count()) ? false : true;
|
|
| 247 | + return (DeviceToken::where('token_integer', $token_integer)->count()) ? false : true;
|
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | } |
@@ -141,8 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | if(!is_null($provider = $this->auth->provider($credential))){
|
| 143 | 143 | $query->where($credential,$provider($credentialValue)); |
| 144 | - } |
|
| 145 | - else{
|
|
| 144 | + } else{
|
|
| 146 | 145 | $query->where($credential,$credentialValue); |
| 147 | 146 | } |
| 148 | 147 | } |
@@ -180,8 +179,7 @@ discard block |
||
| 180 | 179 | if(!$update){
|
| 181 | 180 | $this->auth->params['status'] = 0; |
| 182 | 181 | $this->auth->params['exception'] = 'update'; |
| 183 | - } |
|
| 184 | - else{
|
|
| 182 | + } else{
|
|
| 185 | 183 | if(!is_null($after = $this->auth->provider('after'))){
|
| 186 | 184 | if(false === $after($this->auth->params['builder']->first())){
|
| 187 | 185 | $this->auth->params['status'] = 0; |
@@ -216,8 +214,7 @@ discard block |
||
| 216 | 214 | 'device_agent_integer' => crc32(md5($_SERVER['HTTP_USER_AGENT'])), |
| 217 | 215 | 'expire' => $this->auth->getExpire(), |
| 218 | 216 | ]); |
| 219 | - } |
|
| 220 | - else{
|
|
| 217 | + } else{
|
|
| 221 | 218 | |
| 222 | 219 | return DeviceToken::where('user_id',$this->auth->params['authId'])
|
| 223 | 220 | ->where('device_agent_integer',crc32(md5($_SERVER['HTTP_USER_AGENT'])))
|