@@ -7,11 +7,11 @@ |
||
7 | 7 | class Respond extends Facade { |
8 | 8 | |
9 | 9 | |
10 | - /** |
|
11 | - * Get the registered name of the component. |
|
12 | - * |
|
13 | - * @return string |
|
14 | - */ |
|
15 | - protected static function getFacadeAccessor() { return 'Anetwork\Respond\Messages'; } |
|
10 | + /** |
|
11 | + * Get the registered name of the component. |
|
12 | + * |
|
13 | + * @return string |
|
14 | + */ |
|
15 | + protected static function getFacadeAccessor() { return 'Anetwork\Respond\Messages'; } |
|
16 | 16 | |
17 | 17 | } |
18 | 18 | \ No newline at end of file |
@@ -341,6 +341,10 @@ |
||
341 | 341 | return $file; |
342 | 342 | } |
343 | 343 | |
344 | + /** |
|
345 | + * @param string $class |
|
346 | + * @param string $ext |
|
347 | + */ |
|
344 | 348 | private function findFileWithExtension($class, $ext) |
345 | 349 | { |
346 | 350 | // PSR-4 lookup |
@@ -123,20 +123,20 @@ discard block |
||
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
126 | - $first = $prefix[0]; |
|
127 | - if (!isset($this->prefixesPsr0[$first][$prefix])) { |
|
128 | - $this->prefixesPsr0[$first][$prefix] = (array) $paths; |
|
126 | + $first = $prefix[ 0 ]; |
|
127 | + if (!isset($this->prefixesPsr0[ $first ][ $prefix ])) { |
|
128 | + $this->prefixesPsr0[ $first ][ $prefix ] = (array) $paths; |
|
129 | 129 | |
130 | 130 | return; |
131 | 131 | } |
132 | 132 | if ($prepend) { |
133 | - $this->prefixesPsr0[$first][$prefix] = array_merge( |
|
133 | + $this->prefixesPsr0[ $first ][ $prefix ] = array_merge( |
|
134 | 134 | (array) $paths, |
135 | - $this->prefixesPsr0[$first][$prefix] |
|
135 | + $this->prefixesPsr0[ $first ][ $prefix ] |
|
136 | 136 | ); |
137 | 137 | } else { |
138 | - $this->prefixesPsr0[$first][$prefix] = array_merge( |
|
139 | - $this->prefixesPsr0[$first][$prefix], |
|
138 | + $this->prefixesPsr0[ $first ][ $prefix ] = array_merge( |
|
139 | + $this->prefixesPsr0[ $first ][ $prefix ], |
|
140 | 140 | (array) $paths |
141 | 141 | ); |
142 | 142 | } |
@@ -167,24 +167,24 @@ discard block |
||
167 | 167 | (array) $paths |
168 | 168 | ); |
169 | 169 | } |
170 | - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
|
170 | + } elseif (!isset($this->prefixDirsPsr4[ $prefix ])) { |
|
171 | 171 | // Register directories for a new namespace. |
172 | 172 | $length = strlen($prefix); |
173 | - if ('\\' !== $prefix[$length - 1]) { |
|
173 | + if ('\\' !== $prefix[ $length - 1 ]) { |
|
174 | 174 | throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
175 | 175 | } |
176 | - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
|
177 | - $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
176 | + $this->prefixLengthsPsr4[ $prefix[ 0 ] ][ $prefix ] = $length; |
|
177 | + $this->prefixDirsPsr4[ $prefix ] = (array) $paths; |
|
178 | 178 | } elseif ($prepend) { |
179 | 179 | // Prepend directories for an already registered namespace. |
180 | - $this->prefixDirsPsr4[$prefix] = array_merge( |
|
180 | + $this->prefixDirsPsr4[ $prefix ] = array_merge( |
|
181 | 181 | (array) $paths, |
182 | - $this->prefixDirsPsr4[$prefix] |
|
182 | + $this->prefixDirsPsr4[ $prefix ] |
|
183 | 183 | ); |
184 | 184 | } else { |
185 | 185 | // Append directories for an already registered namespace. |
186 | - $this->prefixDirsPsr4[$prefix] = array_merge( |
|
187 | - $this->prefixDirsPsr4[$prefix], |
|
186 | + $this->prefixDirsPsr4[ $prefix ] = array_merge( |
|
187 | + $this->prefixDirsPsr4[ $prefix ], |
|
188 | 188 | (array) $paths |
189 | 189 | ); |
190 | 190 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | if (!$prefix) { |
203 | 203 | $this->fallbackDirsPsr0 = (array) $paths; |
204 | 204 | } else { |
205 | - $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
|
205 | + $this->prefixesPsr0[ $prefix[ 0 ] ][ $prefix ] = (array) $paths; |
|
206 | 206 | } |
207 | 207 | } |
208 | 208 | |
@@ -221,11 +221,11 @@ discard block |
||
221 | 221 | $this->fallbackDirsPsr4 = (array) $paths; |
222 | 222 | } else { |
223 | 223 | $length = strlen($prefix); |
224 | - if ('\\' !== $prefix[$length - 1]) { |
|
224 | + if ('\\' !== $prefix[ $length - 1 ]) { |
|
225 | 225 | throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); |
226 | 226 | } |
227 | - $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; |
|
228 | - $this->prefixDirsPsr4[$prefix] = (array) $paths; |
|
227 | + $this->prefixLengthsPsr4[ $prefix[ 0 ] ][ $prefix ] = $length; |
|
228 | + $this->prefixDirsPsr4[ $prefix ] = (array) $paths; |
|
229 | 229 | } |
230 | 230 | } |
231 | 231 | |
@@ -314,15 +314,15 @@ discard block |
||
314 | 314 | public function findFile($class) |
315 | 315 | { |
316 | 316 | // work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731 |
317 | - if ('\\' == $class[0]) { |
|
317 | + if ('\\' == $class[ 0 ]) { |
|
318 | 318 | $class = substr($class, 1); |
319 | 319 | } |
320 | 320 | |
321 | 321 | // class map lookup |
322 | - if (isset($this->classMap[$class])) { |
|
323 | - return $this->classMap[$class]; |
|
322 | + if (isset($this->classMap[ $class ])) { |
|
323 | + return $this->classMap[ $class ]; |
|
324 | 324 | } |
325 | - if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { |
|
325 | + if ($this->classMapAuthoritative || isset($this->missingClasses[ $class ])) { |
|
326 | 326 | return false; |
327 | 327 | } |
328 | 328 | |
@@ -335,7 +335,7 @@ discard block |
||
335 | 335 | |
336 | 336 | if (false === $file) { |
337 | 337 | // Remember that this class does not exist. |
338 | - $this->missingClasses[$class] = true; |
|
338 | + $this->missingClasses[ $class ] = true; |
|
339 | 339 | } |
340 | 340 | |
341 | 341 | return $file; |
@@ -344,14 +344,14 @@ discard block |
||
344 | 344 | private function findFileWithExtension($class, $ext) |
345 | 345 | { |
346 | 346 | // PSR-4 lookup |
347 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
347 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext; |
|
348 | 348 | |
349 | - $first = $class[0]; |
|
350 | - if (isset($this->prefixLengthsPsr4[$first])) { |
|
351 | - foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) { |
|
349 | + $first = $class[ 0 ]; |
|
350 | + if (isset($this->prefixLengthsPsr4[ $first ])) { |
|
351 | + foreach ($this->prefixLengthsPsr4[ $first ] as $prefix => $length) { |
|
352 | 352 | if (0 === strpos($class, $prefix)) { |
353 | - foreach ($this->prefixDirsPsr4[$prefix] as $dir) { |
|
354 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) { |
|
353 | + foreach ($this->prefixDirsPsr4[ $prefix ] as $dir) { |
|
354 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $length))) { |
|
355 | 355 | return $file; |
356 | 356 | } |
357 | 357 | } |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | |
362 | 362 | // PSR-4 fallback dirs |
363 | 363 | foreach ($this->fallbackDirsPsr4 as $dir) { |
364 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
364 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) { |
|
365 | 365 | return $file; |
366 | 366 | } |
367 | 367 | } |
@@ -373,14 +373,14 @@ discard block |
||
373 | 373 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
374 | 374 | } else { |
375 | 375 | // PEAR-like class name |
376 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
376 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext; |
|
377 | 377 | } |
378 | 378 | |
379 | - if (isset($this->prefixesPsr0[$first])) { |
|
380 | - foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
|
379 | + if (isset($this->prefixesPsr0[ $first ])) { |
|
380 | + foreach ($this->prefixesPsr0[ $first ] as $prefix => $dirs) { |
|
381 | 381 | if (0 === strpos($class, $prefix)) { |
382 | 382 | foreach ($dirs as $dir) { |
383 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
383 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
384 | 384 | return $file; |
385 | 385 | } |
386 | 386 | } |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | |
391 | 391 | // PSR-0 fallback dirs |
392 | 392 | foreach ($this->fallbackDirsPsr0 as $dir) { |
393 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
393 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
394 | 394 | return $file; |
395 | 395 | } |
396 | 396 | } |
@@ -6,24 +6,24 @@ |
||
6 | 6 | |
7 | 7 | class ComposerStaticInitb90bf1d271f3139658812a290f5c564b |
8 | 8 | { |
9 | - public static $prefixLengthsPsr4 = array ( |
|
9 | + public static $prefixLengthsPsr4 = array( |
|
10 | 10 | 'A' => |
11 | - array ( |
|
11 | + array( |
|
12 | 12 | 'Anetwork\\Respond\\' => 17, |
13 | 13 | ), |
14 | 14 | ); |
15 | 15 | |
16 | - public static $prefixDirsPsr4 = array ( |
|
16 | + public static $prefixDirsPsr4 = array( |
|
17 | 17 | 'Anetwork\\Respond\\' => |
18 | - array ( |
|
19 | - 0 => __DIR__ . '/../..' . '/src', |
|
20 | - 1 => __DIR__ . '/../..' . '/tests', |
|
18 | + array( |
|
19 | + 0 => __DIR__.'/../..'.'/src', |
|
20 | + 1 => __DIR__.'/../..'.'/tests', |
|
21 | 21 | ), |
22 | 22 | ); |
23 | 23 | |
24 | 24 | public static function getInitializer(ClassLoader $loader) |
25 | 25 | { |
26 | - return \Closure::bind(function () use ($loader) { |
|
26 | + return \Closure::bind(function() use ($loader) { |
|
27 | 27 | $loader->prefixLengthsPsr4 = ComposerStaticInitb90bf1d271f3139658812a290f5c564b::$prefixLengthsPsr4; |
28 | 28 | $loader->prefixDirsPsr4 = ComposerStaticInitb90bf1d271f3139658812a290f5c564b::$prefixDirsPsr4; |
29 | 29 |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'Anetwork\\Respond\\' => array($baseDir . '/src', $baseDir . '/tests'), |
|
9 | + 'Anetwork\\Respond\\' => array($baseDir.'/src', $baseDir.'/tests'), |
|
10 | 10 | ); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -25,21 +25,21 @@ discard block |
||
25 | 25 | |
26 | 26 | $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION'); |
27 | 27 | if ($useStaticLoader) { |
28 | - require_once __DIR__ . '/autoload_static.php'; |
|
28 | + require_once __DIR__.'/autoload_static.php'; |
|
29 | 29 | |
30 | 30 | call_user_func(\Composer\Autoload\ComposerStaticInitb90bf1d271f3139658812a290f5c564b::getInitializer($loader)); |
31 | 31 | } else { |
32 | - $map = require __DIR__ . '/autoload_namespaces.php'; |
|
32 | + $map = require __DIR__.'/autoload_namespaces.php'; |
|
33 | 33 | foreach ($map as $namespace => $path) { |
34 | 34 | $loader->set($namespace, $path); |
35 | 35 | } |
36 | 36 | |
37 | - $map = require __DIR__ . '/autoload_psr4.php'; |
|
37 | + $map = require __DIR__.'/autoload_psr4.php'; |
|
38 | 38 | foreach ($map as $namespace => $path) { |
39 | 39 | $loader->setPsr4($namespace, $path); |
40 | 40 | } |
41 | 41 | |
42 | - $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
42 | + $classMap = require __DIR__.'/autoload_classmap.php'; |
|
43 | 43 | if ($classMap) { |
44 | 44 | $loader->addClassMap($classMap); |
45 | 45 | } |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | -require_once __DIR__ . '/composer' . '/autoload_real.php'; |
|
5 | +require_once __DIR__.'/composer'.'/autoload_real.php'; |
|
6 | 6 | |
7 | 7 | return ComposerAutoloaderInitb90bf1d271f3139658812a290f5c564b::getLoader(); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | /** |
53 | 53 | * Setter for $statusCode |
54 | 54 | * @param integer $statusCode |
55 | - * @return App\Htpp\Responds\Respond |
|
55 | + * @return Main |
|
56 | 56 | * @author Shima Payro <[email protected]> |
57 | 57 | * @since May 2, 2016 9:47:04 AM |
58 | 58 | * @uses |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | /** |
83 | 83 | * Setter for $statusText |
84 | 84 | * @param String $statusText |
85 | - * @return App\HtppApp\Htpp\Responds\Respond |
|
85 | + * @return Main |
|
86 | 86 | * @author Shima Payro <[email protected]> |
87 | 87 | * @since May 2, 2016 9:48:23 AM |
88 | 88 | * @uses |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | * @author Mehdi Hosseini <[email protected]> |
152 | 152 | * @since August 24, 2016 |
153 | 153 | * @param $errorCode integer |
154 | - * @return instance |
|
154 | + * @return Main |
|
155 | 155 | */ |
156 | 156 | public function setErrorCode( $errorCode ) { |
157 | 157 | |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | * Get headers |
204 | 204 | * @author Shima Payro <[email protected]> |
205 | 205 | * @since Sep 13, 2016 |
206 | - * @return array |
|
206 | + * @return Main |
|
207 | 207 | */ |
208 | 208 | public function setHeaders( $statusText = [] ) { |
209 | 209 |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * Haeders |
35 | 35 | * @var array |
36 | 36 | */ |
37 | - protected $headers = []; |
|
37 | + protected $headers = [ ]; |
|
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @var string |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | $this->lang = \App::getLocale(); |
56 | 56 | |
57 | - $this->config = include __DIR__ . '/../errors/lang/' . $this->lang . '.php'; |
|
57 | + $this->config = include __DIR__.'/../errors/lang/'.$this->lang.'.php'; |
|
58 | 58 | |
59 | 59 | } |
60 | 60 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * @uses |
81 | 81 | * @see |
82 | 82 | */ |
83 | - public function setStatusCode( $statusCode ) { |
|
83 | + public function setStatusCode($statusCode) { |
|
84 | 84 | |
85 | 85 | $this->statusCode = $statusCode; |
86 | 86 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * @uses |
111 | 111 | * @see |
112 | 112 | */ |
113 | - public function setStatusText( $statusText ) { |
|
113 | + public function setStatusText($statusText) { |
|
114 | 114 | |
115 | 115 | $this->statusText = $statusText; |
116 | 116 | |
@@ -127,15 +127,15 @@ discard block |
||
127 | 127 | * @uses |
128 | 128 | * @see |
129 | 129 | */ |
130 | - public function respond( $data ) { |
|
130 | + public function respond($data) { |
|
131 | 131 | |
132 | - $result = array_filter( $this->getHeaders() ); |
|
132 | + $result = array_filter($this->getHeaders()); |
|
133 | 133 | |
134 | - if ( empty( $result ) ) |
|
135 | - return response()->json( $data, $this->getStatusCode() ); |
|
134 | + if (empty($result)) |
|
135 | + return response()->json($data, $this->getStatusCode()); |
|
136 | 136 | |
137 | - return response()->json( $data, $this->getStatusCode() ) |
|
138 | - ->withHeaders( $this->getHeaders() ); |
|
137 | + return response()->json($data, $this->getStatusCode()) |
|
138 | + ->withHeaders($this->getHeaders()); |
|
139 | 139 | |
140 | 140 | } |
141 | 141 | |
@@ -148,16 +148,16 @@ discard block |
||
148 | 148 | * @uses |
149 | 149 | * @see |
150 | 150 | */ |
151 | - public function respondWithMessage( $message ) { |
|
151 | + public function respondWithMessage($message) { |
|
152 | 152 | |
153 | 153 | $res[ 'status' ] = $this->getStatusText(); |
154 | 154 | |
155 | 155 | //if it's about failure |
156 | - if ( $this->getErrorCode() ) { |
|
156 | + if ($this->getErrorCode()) { |
|
157 | 157 | |
158 | 158 | $res[ 'error' ] = $this->getErrorCode(); |
159 | 159 | |
160 | - if ( empty( $message ) ) |
|
160 | + if (empty($message)) |
|
161 | 161 | $res[ 'message' ] = $this->getErrorMessage(); |
162 | 162 | |
163 | 163 | $res[ 'message' ] = $message; |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | } |
170 | 170 | |
171 | - return $this->respond( $res ); |
|
171 | + return $this->respond($res); |
|
172 | 172 | |
173 | 173 | } |
174 | 174 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @param $errorCode integer |
180 | 180 | * @return instance |
181 | 181 | */ |
182 | - public function setErrorCode( $errorCode ) { |
|
182 | + public function setErrorCode($errorCode) { |
|
183 | 183 | |
184 | 184 | $this->error = $this->config[ $errorCode ]; |
185 | 185 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | */ |
210 | 210 | public function getErrorMessage() { |
211 | 211 | |
212 | - return $this->error['message']; |
|
212 | + return $this->error[ 'message' ]; |
|
213 | 213 | |
214 | 214 | } |
215 | 215 | |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | * @since Sep 13, 2016 |
232 | 232 | * @return array |
233 | 233 | */ |
234 | - public function setHeaders( $headers = [] ) { |
|
234 | + public function setHeaders($headers = [ ]) { |
|
235 | 235 | |
236 | 236 | $this->headers = $headers; |
237 | 237 | |
@@ -248,12 +248,12 @@ discard block |
||
248 | 248 | * @uses |
249 | 249 | * @see |
250 | 250 | */ |
251 | - public function respondWithResult( $data = NULL ) { |
|
251 | + public function respondWithResult($data = NULL) { |
|
252 | 252 | |
253 | 253 | $res[ 'status' ] = $this->getStatusText(); |
254 | 254 | |
255 | 255 | //if it's about laravel validation error |
256 | - if ( $this->getErrorCode() && $this->getStatusCode() == 420 ) { |
|
256 | + if ($this->getErrorCode() && $this->getStatusCode() == 420) { |
|
257 | 257 | |
258 | 258 | $res[ 'error' ] = $this->getErrorCode(); |
259 | 259 | $res[ 'message' ] = $data; |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | |
265 | 265 | } |
266 | 266 | |
267 | - return $this->respond( $res ); |
|
267 | + return $this->respond($res); |
|
268 | 268 | |
269 | 269 | } |
270 | 270 |
@@ -131,8 +131,9 @@ discard block |
||
131 | 131 | |
132 | 132 | $result = array_filter( $this->getHeaders() ); |
133 | 133 | |
134 | - if ( empty( $result ) ) |
|
135 | - return response()->json( $data, $this->getStatusCode() ); |
|
134 | + if ( empty( $result ) ) { |
|
135 | + return response()->json( $data, $this->getStatusCode() ); |
|
136 | + } |
|
136 | 137 | |
137 | 138 | return response()->json( $data, $this->getStatusCode() ) |
138 | 139 | ->withHeaders( $this->getHeaders() ); |
@@ -157,8 +158,9 @@ discard block |
||
157 | 158 | |
158 | 159 | $res[ 'error' ] = $this->getErrorCode(); |
159 | 160 | |
160 | - if ( empty( $message ) ) |
|
161 | - $res[ 'message' ] = $this->getErrorMessage(); |
|
161 | + if ( empty( $message ) ) { |
|
162 | + $res[ 'message' ] = $this->getErrorMessage(); |
|
163 | + } |
|
162 | 164 | |
163 | 165 | $res[ 'message' ] = $message; |
164 | 166 |
@@ -6,267 +6,267 @@ |
||
6 | 6 | |
7 | 7 | class Main { |
8 | 8 | |
9 | - /** |
|
10 | - * Http status code |
|
11 | - * @var integer |
|
12 | - */ |
|
13 | - protected $statusCode = 200; |
|
14 | - |
|
15 | - /** |
|
16 | - * Status text |
|
17 | - * @var string |
|
18 | - */ |
|
19 | - protected $statusText = 'success'; |
|
20 | - |
|
21 | - /** |
|
22 | - * Error code, message and text-key |
|
23 | - * @var array |
|
24 | - */ |
|
25 | - protected $error; |
|
26 | - |
|
27 | - /** |
|
28 | - * Error code |
|
29 | - * @var integer |
|
30 | - */ |
|
31 | - protected $errorCode; |
|
32 | - |
|
33 | - /** |
|
34 | - * Haeders |
|
35 | - * @var array |
|
36 | - */ |
|
37 | - protected $headers = []; |
|
38 | - |
|
39 | - /** |
|
40 | - * @var string |
|
41 | - */ |
|
42 | - protected $lang; |
|
43 | - |
|
44 | - /** |
|
45 | - * @var arry |
|
46 | - */ |
|
47 | - protected $config; |
|
48 | - |
|
49 | - /** |
|
50 | - * @author Shahrokh Niakan <[email protected]> |
|
51 | - * @since Sep 24, 2016 |
|
52 | - */ |
|
53 | - public function __construct() { |
|
54 | - |
|
55 | - |
|
56 | - $this->lang = \App::getLocale(); |
|
57 | - |
|
58 | - $this->config = include __DIR__ . '/../errors/lang/' . $this->lang . '.php'; |
|
59 | - |
|
60 | - } |
|
61 | - |
|
62 | - /** |
|
63 | - * Getter for $statusCode |
|
64 | - * @author Shima Payro <[email protected]> |
|
65 | - * @since May 2, 2016 9:46:27 AM |
|
66 | - * @uses |
|
67 | - * @see |
|
68 | - */ |
|
69 | - public function getStatusCode() { |
|
70 | - |
|
71 | - return $this->statusCode; |
|
72 | - |
|
73 | - } |
|
9 | + /** |
|
10 | + * Http status code |
|
11 | + * @var integer |
|
12 | + */ |
|
13 | + protected $statusCode = 200; |
|
14 | + |
|
15 | + /** |
|
16 | + * Status text |
|
17 | + * @var string |
|
18 | + */ |
|
19 | + protected $statusText = 'success'; |
|
20 | + |
|
21 | + /** |
|
22 | + * Error code, message and text-key |
|
23 | + * @var array |
|
24 | + */ |
|
25 | + protected $error; |
|
26 | + |
|
27 | + /** |
|
28 | + * Error code |
|
29 | + * @var integer |
|
30 | + */ |
|
31 | + protected $errorCode; |
|
32 | + |
|
33 | + /** |
|
34 | + * Haeders |
|
35 | + * @var array |
|
36 | + */ |
|
37 | + protected $headers = []; |
|
38 | + |
|
39 | + /** |
|
40 | + * @var string |
|
41 | + */ |
|
42 | + protected $lang; |
|
43 | + |
|
44 | + /** |
|
45 | + * @var arry |
|
46 | + */ |
|
47 | + protected $config; |
|
48 | + |
|
49 | + /** |
|
50 | + * @author Shahrokh Niakan <[email protected]> |
|
51 | + * @since Sep 24, 2016 |
|
52 | + */ |
|
53 | + public function __construct() { |
|
54 | + |
|
55 | + |
|
56 | + $this->lang = \App::getLocale(); |
|
57 | + |
|
58 | + $this->config = include __DIR__ . '/../errors/lang/' . $this->lang . '.php'; |
|
59 | + |
|
60 | + } |
|
61 | + |
|
62 | + /** |
|
63 | + * Getter for $statusCode |
|
64 | + * @author Shima Payro <[email protected]> |
|
65 | + * @since May 2, 2016 9:46:27 AM |
|
66 | + * @uses |
|
67 | + * @see |
|
68 | + */ |
|
69 | + public function getStatusCode() { |
|
70 | + |
|
71 | + return $this->statusCode; |
|
72 | + |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * Setter for $statusCode |
|
77 | - * @param integer $statusCode |
|
78 | - * @return App\Htpp\Responds\Respond |
|
79 | - * @author Shima Payro <[email protected]> |
|
80 | - * @since May 2, 2016 9:47:04 AM |
|
81 | - * @uses |
|
82 | - * @see |
|
83 | - */ |
|
84 | - public function setStatusCode( $statusCode ) { |
|
85 | - |
|
86 | - $this->statusCode = $statusCode; |
|
75 | + /** |
|
76 | + * Setter for $statusCode |
|
77 | + * @param integer $statusCode |
|
78 | + * @return App\Htpp\Responds\Respond |
|
79 | + * @author Shima Payro <[email protected]> |
|
80 | + * @since May 2, 2016 9:47:04 AM |
|
81 | + * @uses |
|
82 | + * @see |
|
83 | + */ |
|
84 | + public function setStatusCode( $statusCode ) { |
|
85 | + |
|
86 | + $this->statusCode = $statusCode; |
|
87 | 87 | |
88 | - return $this; |
|
88 | + return $this; |
|
89 | 89 | |
90 | - } |
|
90 | + } |
|
91 | 91 | |
92 | - /** |
|
93 | - * Getter for $statusText |
|
94 | - * @author Shima Payro <[email protected]> |
|
95 | - * @since May 2, 2016 9:47:36 AM |
|
96 | - * @uses |
|
97 | - * @see |
|
98 | - */ |
|
99 | - public function getStatusText() { |
|
92 | + /** |
|
93 | + * Getter for $statusText |
|
94 | + * @author Shima Payro <[email protected]> |
|
95 | + * @since May 2, 2016 9:47:36 AM |
|
96 | + * @uses |
|
97 | + * @see |
|
98 | + */ |
|
99 | + public function getStatusText() { |
|
100 | 100 | |
101 | - return $this->statusText; |
|
101 | + return $this->statusText; |
|
102 | 102 | |
103 | - } |
|
103 | + } |
|
104 | 104 | |
105 | - /** |
|
106 | - * Setter for $statusText |
|
107 | - * @param String $statusText |
|
108 | - * @return App\HtppApp\Htpp\Responds\Respond |
|
109 | - * @author Shima Payro <[email protected]> |
|
110 | - * @since May 2, 2016 9:48:23 AM |
|
111 | - * @uses |
|
112 | - * @see |
|
113 | - */ |
|
114 | - public function setStatusText( $statusText ) { |
|
105 | + /** |
|
106 | + * Setter for $statusText |
|
107 | + * @param String $statusText |
|
108 | + * @return App\HtppApp\Htpp\Responds\Respond |
|
109 | + * @author Shima Payro <[email protected]> |
|
110 | + * @since May 2, 2016 9:48:23 AM |
|
111 | + * @uses |
|
112 | + * @see |
|
113 | + */ |
|
114 | + public function setStatusText( $statusText ) { |
|
115 | 115 | |
116 | - $this->statusText = $statusText; |
|
116 | + $this->statusText = $statusText; |
|
117 | 117 | |
118 | - return $this; |
|
118 | + return $this; |
|
119 | 119 | |
120 | - } |
|
120 | + } |
|
121 | 121 | |
122 | - /** |
|
123 | - * Response |
|
124 | - * @param json $data |
|
125 | - * @return jsom |
|
126 | - * @author Shima Payro <[email protected]> |
|
127 | - * @since May 2, 2016 9:48:45 AM |
|
128 | - * @uses |
|
129 | - * @see |
|
130 | - */ |
|
131 | - public function respond( $data ) { |
|
122 | + /** |
|
123 | + * Response |
|
124 | + * @param json $data |
|
125 | + * @return jsom |
|
126 | + * @author Shima Payro <[email protected]> |
|
127 | + * @since May 2, 2016 9:48:45 AM |
|
128 | + * @uses |
|
129 | + * @see |
|
130 | + */ |
|
131 | + public function respond( $data ) { |
|
132 | 132 | |
133 | - $result = array_filter( $this->getHeaders() ); |
|
133 | + $result = array_filter( $this->getHeaders() ); |
|
134 | 134 | |
135 | - if ( empty( $result ) ) |
|
136 | - return response()->json( $data, $this->getStatusCode() ); |
|
135 | + if ( empty( $result ) ) |
|
136 | + return response()->json( $data, $this->getStatusCode() ); |
|
137 | 137 | |
138 | - return response()->json( $data, $this->getStatusCode() ) |
|
139 | - ->withHeaders( $this->getHeaders() ); |
|
138 | + return response()->json( $data, $this->getStatusCode() ) |
|
139 | + ->withHeaders( $this->getHeaders() ); |
|
140 | 140 | |
141 | - } |
|
141 | + } |
|
142 | 142 | |
143 | - /** |
|
144 | - * Response which conteins just a message |
|
145 | - * @param string $message |
|
146 | - * @author Shima Payro <[email protected]> |
|
147 | - * @since May 2, 2016 9:49:21 AM |
|
148 | - * @return json |
|
149 | - * @uses |
|
150 | - * @see |
|
151 | - */ |
|
152 | - public function respondWithMessage( $message ) { |
|
143 | + /** |
|
144 | + * Response which conteins just a message |
|
145 | + * @param string $message |
|
146 | + * @author Shima Payro <[email protected]> |
|
147 | + * @since May 2, 2016 9:49:21 AM |
|
148 | + * @return json |
|
149 | + * @uses |
|
150 | + * @see |
|
151 | + */ |
|
152 | + public function respondWithMessage( $message ) { |
|
153 | 153 | |
154 | - $res[ 'status' ] = $this->getStatusText(); |
|
154 | + $res[ 'status' ] = $this->getStatusText(); |
|
155 | 155 | |
156 | - //if it's about failure |
|
157 | - if ( $this->getErrorCode() ) { |
|
156 | + //if it's about failure |
|
157 | + if ( $this->getErrorCode() ) { |
|
158 | 158 | |
159 | - $res[ 'error' ] = $this->getErrorCode(); |
|
159 | + $res[ 'error' ] = $this->getErrorCode(); |
|
160 | 160 | |
161 | - if ( empty( $message ) ) |
|
162 | - $res[ 'message' ] = $this->getErrorMessage(); |
|
161 | + if ( empty( $message ) ) |
|
162 | + $res[ 'message' ] = $this->getErrorMessage(); |
|
163 | 163 | |
164 | - $res[ 'message' ] = $message; |
|
164 | + $res[ 'message' ] = $message; |
|
165 | 165 | |
166 | - } else { |
|
166 | + } else { |
|
167 | 167 | |
168 | - $res[ 'message' ] = $message; |
|
168 | + $res[ 'message' ] = $message; |
|
169 | 169 | |
170 | - } |
|
170 | + } |
|
171 | 171 | |
172 | - return $this->respond( $res ); |
|
172 | + return $this->respond( $res ); |
|
173 | 173 | |
174 | - } |
|
174 | + } |
|
175 | 175 | |
176 | - /** |
|
177 | - * Set error code in our result |
|
178 | - * @author Mehdi Hosseini <[email protected]> |
|
179 | - * @since August 24, 2016 |
|
180 | - * @param $errorCode integer |
|
181 | - * @return instance |
|
182 | - */ |
|
183 | - public function setErrorCode( $errorCode ) { |
|
176 | + /** |
|
177 | + * Set error code in our result |
|
178 | + * @author Mehdi Hosseini <[email protected]> |
|
179 | + * @since August 24, 2016 |
|
180 | + * @param $errorCode integer |
|
181 | + * @return instance |
|
182 | + */ |
|
183 | + public function setErrorCode( $errorCode ) { |
|
184 | 184 | |
185 | - $this->error = $this->config[ $errorCode ]; |
|
185 | + $this->error = $this->config[ $errorCode ]; |
|
186 | 186 | |
187 | - $this->errorCode = $errorCode; |
|
187 | + $this->errorCode = $errorCode; |
|
188 | 188 | |
189 | - return $this; |
|
189 | + return $this; |
|
190 | 190 | |
191 | - } |
|
191 | + } |
|
192 | 192 | |
193 | - /** |
|
194 | - * Return Error code |
|
195 | - * @author Mehdi Hosseini <[email protected]> |
|
196 | - * @since August 24, 2016 |
|
197 | - * @return integer |
|
198 | - */ |
|
199 | - public function getErrorCode() { |
|
193 | + /** |
|
194 | + * Return Error code |
|
195 | + * @author Mehdi Hosseini <[email protected]> |
|
196 | + * @since August 24, 2016 |
|
197 | + * @return integer |
|
198 | + */ |
|
199 | + public function getErrorCode() { |
|
200 | 200 | |
201 | - return $this->errorCode; |
|
201 | + return $this->errorCode; |
|
202 | 202 | |
203 | - } |
|
203 | + } |
|
204 | 204 | |
205 | - /** |
|
206 | - * Get error message |
|
207 | - * @author Mehdi Hosseini <[email protected]> |
|
208 | - * @since August 24, 2016 |
|
209 | - * @return string |
|
210 | - */ |
|
211 | - public function getErrorMessage() { |
|
205 | + /** |
|
206 | + * Get error message |
|
207 | + * @author Mehdi Hosseini <[email protected]> |
|
208 | + * @since August 24, 2016 |
|
209 | + * @return string |
|
210 | + */ |
|
211 | + public function getErrorMessage() { |
|
212 | 212 | |
213 | - return $this->error['message']; |
|
213 | + return $this->error['message']; |
|
214 | 214 | |
215 | - } |
|
215 | + } |
|
216 | 216 | |
217 | - /** |
|
218 | - * Get headers |
|
219 | - * @author Shima Payro <[email protected]> |
|
220 | - * @since Sep 13, 2016 |
|
221 | - * @return array |
|
222 | - */ |
|
223 | - public function getHeaders() { |
|
217 | + /** |
|
218 | + * Get headers |
|
219 | + * @author Shima Payro <[email protected]> |
|
220 | + * @since Sep 13, 2016 |
|
221 | + * @return array |
|
222 | + */ |
|
223 | + public function getHeaders() { |
|
224 | 224 | |
225 | - return $this->headers; |
|
225 | + return $this->headers; |
|
226 | 226 | |
227 | - } |
|
227 | + } |
|
228 | 228 | |
229 | - /** |
|
230 | - * Set headers |
|
231 | - * @author Shima Payro <[email protected]> |
|
232 | - * @since Sep 13, 2016 |
|
233 | - * @return array |
|
234 | - */ |
|
235 | - public function setHeaders( $headers = [] ) { |
|
229 | + /** |
|
230 | + * Set headers |
|
231 | + * @author Shima Payro <[email protected]> |
|
232 | + * @since Sep 13, 2016 |
|
233 | + * @return array |
|
234 | + */ |
|
235 | + public function setHeaders( $headers = [] ) { |
|
236 | 236 | |
237 | - $this->headers = $headers; |
|
237 | + $this->headers = $headers; |
|
238 | 238 | |
239 | - return $this; |
|
239 | + return $this; |
|
240 | 240 | |
241 | - } |
|
241 | + } |
|
242 | 242 | |
243 | - /** |
|
244 | - * Response which contains status and data |
|
245 | - * @param json $data |
|
246 | - * @author Shima Payro <[email protected]> |
|
247 | - * @since May 2, 2016 9:50:19 AM |
|
248 | - * @return json |
|
249 | - * @uses |
|
250 | - * @see |
|
251 | - */ |
|
252 | - public function respondWithResult( $data = NULL ) { |
|
243 | + /** |
|
244 | + * Response which contains status and data |
|
245 | + * @param json $data |
|
246 | + * @author Shima Payro <[email protected]> |
|
247 | + * @since May 2, 2016 9:50:19 AM |
|
248 | + * @return json |
|
249 | + * @uses |
|
250 | + * @see |
|
251 | + */ |
|
252 | + public function respondWithResult( $data = NULL ) { |
|
253 | 253 | |
254 | - $res[ 'status' ] = $this->getStatusText(); |
|
254 | + $res[ 'status' ] = $this->getStatusText(); |
|
255 | 255 | |
256 | - //if it's about laravel validation error |
|
257 | - if ( $this->getErrorCode() && $this->getStatusCode() == 420 ) { |
|
256 | + //if it's about laravel validation error |
|
257 | + if ( $this->getErrorCode() && $this->getStatusCode() == 420 ) { |
|
258 | 258 | |
259 | - $res[ 'error' ] = $this->getErrorCode(); |
|
260 | - $res[ 'message' ] = $data; |
|
259 | + $res[ 'error' ] = $this->getErrorCode(); |
|
260 | + $res[ 'message' ] = $data; |
|
261 | 261 | |
262 | - } else { |
|
262 | + } else { |
|
263 | 263 | |
264 | - $res[ 'result' ] = $data; |
|
264 | + $res[ 'result' ] = $data; |
|
265 | 265 | |
266 | - } |
|
266 | + } |
|
267 | 267 | |
268 | - return $this->respond( $res ); |
|
268 | + return $this->respond( $res ); |
|
269 | 269 | |
270 | - } |
|
270 | + } |
|
271 | 271 | |
272 | 272 | } |
@@ -2,180 +2,180 @@ |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - 'success' => [ |
|
6 | - |
|
7 | - 'insert' => '.درخواست با موفقیت درج شده است', |
|
8 | - |
|
9 | - 'delete' => '.درخواست با موفقیت پاک شده است', |
|
10 | - |
|
11 | - 'update' => '.درخواست با موفقیت ویرایش شده است' |
|
12 | - |
|
13 | - ], |
|
14 | - |
|
15 | - 1001 => [ |
|
16 | - 'message' => '.درخواست مورد نظر پیدا نشد', |
|
17 | - 'type' => 'error' |
|
18 | - ], |
|
19 | - |
|
20 | - 1002 => [ |
|
21 | - 'message' => '.کاربر مورد نظر موجود نیست', |
|
22 | - 'type' => 'error' |
|
23 | - ], |
|
24 | - |
|
25 | - 1003 => [ |
|
26 | - 'message' => '.نوع کاربری وارد نشده است', |
|
27 | - 'type' => 'error' |
|
28 | - ], |
|
29 | - |
|
30 | - 1004 => [ |
|
31 | - 'message' => '.خطا برای تکراری بودن', |
|
32 | - 'type' => 'error' |
|
33 | - ], |
|
34 | - |
|
35 | - 1005 => [ |
|
36 | - 'message' => '.خطا برای تکراری بودن نقش کاربر', |
|
37 | - 'type' => 'error' |
|
38 | - ], |
|
39 | - |
|
40 | - 3001 => [ |
|
41 | - 'message' => '.شما لاگین نیستید', |
|
42 | - 'type' => 'error', |
|
43 | - 'cat' => 'auth', |
|
44 | - 'short' => 'not-logged-on' |
|
45 | - ], |
|
46 | - |
|
47 | - 3002 => [ |
|
48 | - 'message' => '.اپ توکن درست تولید نشده است', |
|
49 | - 'type' => 'error', |
|
50 | - 'cat' => 'auth' |
|
51 | - ], |
|
52 | - |
|
53 | - 3003 =>[ |
|
54 | - 'message' => '.توکن کاربر درست تولید نشده است', |
|
55 | - 'type' => 'error', |
|
56 | - 'cat' => 'auth' |
|
57 | - ], |
|
58 | - |
|
59 | - 3004 => [ |
|
60 | - 'message' => '.هیچ آژانسی به توکن دسترسی ندارد', |
|
61 | - 'type' => 'error', |
|
62 | - 'cat' => 'auth' |
|
63 | - ], |
|
64 | - |
|
65 | - 3005 => [ |
|
66 | - 'message' => '.توکن درخواست شده شمامل اطلاعات کاربر نیست', |
|
67 | - 'type' => 'error', |
|
68 | - 'cat' => 'auth' |
|
69 | - ], |
|
70 | - |
|
71 | - 3006 => [ |
|
72 | - 'message' => '.توکن درخواستی ست نشده است', |
|
73 | - 'type' => 'error', |
|
74 | - 'cat' => 'auth' |
|
75 | - ], |
|
76 | - |
|
77 | - 3007 => [ |
|
78 | - 'message' => '.توکن نمایش داده نمیشود', |
|
79 | - 'type' => 'error', |
|
80 | - 'cat' => 'auth' |
|
81 | - ], |
|
82 | - |
|
83 | - 3008 => [ |
|
84 | - 'message' => '.توکن برای شناسایی کاربر تولید نمیشود', |
|
85 | - 'type' => 'error', |
|
86 | - 'cat' => 'auth' |
|
87 | - ], |
|
88 | - |
|
89 | - 3009 => [ |
|
90 | - 'message' => '.توکن تولید نمیشود', |
|
91 | - 'type' => 'error', |
|
92 | - 'cat' => 'auth' |
|
93 | - ], |
|
94 | - |
|
95 | - 3010 => [ |
|
96 | - 'message' => '.زمان استفاده از توکن گذشته است', |
|
97 | - 'type' => 'error', |
|
98 | - 'cat' => 'auth' |
|
99 | - ], |
|
100 | - |
|
101 | - 3011 => [ |
|
102 | - 'message' => '.توکن معتبر نیست', |
|
103 | - 'type' => 'error', |
|
104 | - 'cat' => 'auth' |
|
105 | - ], |
|
106 | - |
|
107 | - 3012 => [ |
|
108 | - 'message' => '.توکن در لیست سیاه', |
|
109 | - 'type' => 'error', |
|
110 | - 'cat' => 'auth' |
|
111 | - ], |
|
112 | - |
|
113 | - 3013 => [ |
|
114 | - 'message' => '.Payload معتبر نیست', |
|
115 | - 'type' => 'error', |
|
116 | - 'cat' => 'auth' |
|
117 | - ], |
|
118 | - |
|
119 | - 3014 => [ |
|
120 | - 'message' => '.Claim معتبر نیست', |
|
121 | - 'type' => 'error', |
|
122 | - 'cat' => 'auth' |
|
123 | - ], |
|
124 | - |
|
125 | - 3015 => [ |
|
126 | - 'message' => '.خطا به دلیل اعتبار سنجی توکن', |
|
127 | - 'type' => 'error', |
|
128 | - 'cat' => 'auth' |
|
129 | - ], |
|
130 | - |
|
131 | - 5401 => [ |
|
132 | - 'message' => '.شناسایی کاربر نامعتبر است', |
|
133 | - 'type' => 'error' |
|
134 | - ], |
|
135 | - |
|
136 | - 5404 => [ |
|
137 | - 'message' => '.صفحه درخواست شده پیدا نمیشود', |
|
138 | - 'type' => 'error' |
|
139 | - ], |
|
140 | - |
|
141 | - 5405 => [ |
|
142 | - 'message' => '.شما به درخواستی که داده اید دسترسی ندارید', |
|
143 | - 'type' => 'error' |
|
144 | - ], |
|
145 | - |
|
146 | - 5406 => [ |
|
147 | - 'message' => '.پارامترهایی که شما وارد کرده اید نا معتبر است', |
|
148 | - 'type' => 'error' |
|
149 | - ], |
|
150 | - |
|
151 | - 5420 => [ |
|
152 | - 'message' => '.خطای اعتبار سنجی', |
|
153 | - 'type' => 'error' |
|
154 | - ], |
|
155 | - |
|
156 | - 5422 => [ |
|
157 | - 'message' => '.توکن نامعتبر است', |
|
158 | - 'type' => 'error' |
|
159 | - ], |
|
160 | - |
|
161 | - 5445 => [ |
|
162 | - 'message' => '.ارتباط با پایگاه داده مشکل دارد', |
|
163 | - 'type' => 'error' |
|
164 | - ], |
|
165 | - |
|
166 | - 5448 => [ |
|
167 | - 'message' => '.عملیات درج درست اجرا نشده است', |
|
168 | - 'type' => 'error' |
|
169 | - ], |
|
170 | - |
|
171 | - 5447 => [ |
|
172 | - 'message' => '.عملیات پاک کردن درست اجرا نشده است', |
|
173 | - 'type' => 'error' |
|
174 | - ], |
|
175 | - |
|
176 | - 5449 => [ |
|
177 | - 'message' => '.عملیات ویرایش درست اجرا نشده است', |
|
178 | - 'type' => 'error' |
|
179 | - ] |
|
5 | + 'success' => [ |
|
6 | + |
|
7 | + 'insert' => '.درخواست با موفقیت درج شده است', |
|
8 | + |
|
9 | + 'delete' => '.درخواست با موفقیت پاک شده است', |
|
10 | + |
|
11 | + 'update' => '.درخواست با موفقیت ویرایش شده است' |
|
12 | + |
|
13 | + ], |
|
14 | + |
|
15 | + 1001 => [ |
|
16 | + 'message' => '.درخواست مورد نظر پیدا نشد', |
|
17 | + 'type' => 'error' |
|
18 | + ], |
|
19 | + |
|
20 | + 1002 => [ |
|
21 | + 'message' => '.کاربر مورد نظر موجود نیست', |
|
22 | + 'type' => 'error' |
|
23 | + ], |
|
24 | + |
|
25 | + 1003 => [ |
|
26 | + 'message' => '.نوع کاربری وارد نشده است', |
|
27 | + 'type' => 'error' |
|
28 | + ], |
|
29 | + |
|
30 | + 1004 => [ |
|
31 | + 'message' => '.خطا برای تکراری بودن', |
|
32 | + 'type' => 'error' |
|
33 | + ], |
|
34 | + |
|
35 | + 1005 => [ |
|
36 | + 'message' => '.خطا برای تکراری بودن نقش کاربر', |
|
37 | + 'type' => 'error' |
|
38 | + ], |
|
39 | + |
|
40 | + 3001 => [ |
|
41 | + 'message' => '.شما لاگین نیستید', |
|
42 | + 'type' => 'error', |
|
43 | + 'cat' => 'auth', |
|
44 | + 'short' => 'not-logged-on' |
|
45 | + ], |
|
46 | + |
|
47 | + 3002 => [ |
|
48 | + 'message' => '.اپ توکن درست تولید نشده است', |
|
49 | + 'type' => 'error', |
|
50 | + 'cat' => 'auth' |
|
51 | + ], |
|
52 | + |
|
53 | + 3003 =>[ |
|
54 | + 'message' => '.توکن کاربر درست تولید نشده است', |
|
55 | + 'type' => 'error', |
|
56 | + 'cat' => 'auth' |
|
57 | + ], |
|
58 | + |
|
59 | + 3004 => [ |
|
60 | + 'message' => '.هیچ آژانسی به توکن دسترسی ندارد', |
|
61 | + 'type' => 'error', |
|
62 | + 'cat' => 'auth' |
|
63 | + ], |
|
64 | + |
|
65 | + 3005 => [ |
|
66 | + 'message' => '.توکن درخواست شده شمامل اطلاعات کاربر نیست', |
|
67 | + 'type' => 'error', |
|
68 | + 'cat' => 'auth' |
|
69 | + ], |
|
70 | + |
|
71 | + 3006 => [ |
|
72 | + 'message' => '.توکن درخواستی ست نشده است', |
|
73 | + 'type' => 'error', |
|
74 | + 'cat' => 'auth' |
|
75 | + ], |
|
76 | + |
|
77 | + 3007 => [ |
|
78 | + 'message' => '.توکن نمایش داده نمیشود', |
|
79 | + 'type' => 'error', |
|
80 | + 'cat' => 'auth' |
|
81 | + ], |
|
82 | + |
|
83 | + 3008 => [ |
|
84 | + 'message' => '.توکن برای شناسایی کاربر تولید نمیشود', |
|
85 | + 'type' => 'error', |
|
86 | + 'cat' => 'auth' |
|
87 | + ], |
|
88 | + |
|
89 | + 3009 => [ |
|
90 | + 'message' => '.توکن تولید نمیشود', |
|
91 | + 'type' => 'error', |
|
92 | + 'cat' => 'auth' |
|
93 | + ], |
|
94 | + |
|
95 | + 3010 => [ |
|
96 | + 'message' => '.زمان استفاده از توکن گذشته است', |
|
97 | + 'type' => 'error', |
|
98 | + 'cat' => 'auth' |
|
99 | + ], |
|
100 | + |
|
101 | + 3011 => [ |
|
102 | + 'message' => '.توکن معتبر نیست', |
|
103 | + 'type' => 'error', |
|
104 | + 'cat' => 'auth' |
|
105 | + ], |
|
106 | + |
|
107 | + 3012 => [ |
|
108 | + 'message' => '.توکن در لیست سیاه', |
|
109 | + 'type' => 'error', |
|
110 | + 'cat' => 'auth' |
|
111 | + ], |
|
112 | + |
|
113 | + 3013 => [ |
|
114 | + 'message' => '.Payload معتبر نیست', |
|
115 | + 'type' => 'error', |
|
116 | + 'cat' => 'auth' |
|
117 | + ], |
|
118 | + |
|
119 | + 3014 => [ |
|
120 | + 'message' => '.Claim معتبر نیست', |
|
121 | + 'type' => 'error', |
|
122 | + 'cat' => 'auth' |
|
123 | + ], |
|
124 | + |
|
125 | + 3015 => [ |
|
126 | + 'message' => '.خطا به دلیل اعتبار سنجی توکن', |
|
127 | + 'type' => 'error', |
|
128 | + 'cat' => 'auth' |
|
129 | + ], |
|
130 | + |
|
131 | + 5401 => [ |
|
132 | + 'message' => '.شناسایی کاربر نامعتبر است', |
|
133 | + 'type' => 'error' |
|
134 | + ], |
|
135 | + |
|
136 | + 5404 => [ |
|
137 | + 'message' => '.صفحه درخواست شده پیدا نمیشود', |
|
138 | + 'type' => 'error' |
|
139 | + ], |
|
140 | + |
|
141 | + 5405 => [ |
|
142 | + 'message' => '.شما به درخواستی که داده اید دسترسی ندارید', |
|
143 | + 'type' => 'error' |
|
144 | + ], |
|
145 | + |
|
146 | + 5406 => [ |
|
147 | + 'message' => '.پارامترهایی که شما وارد کرده اید نا معتبر است', |
|
148 | + 'type' => 'error' |
|
149 | + ], |
|
150 | + |
|
151 | + 5420 => [ |
|
152 | + 'message' => '.خطای اعتبار سنجی', |
|
153 | + 'type' => 'error' |
|
154 | + ], |
|
155 | + |
|
156 | + 5422 => [ |
|
157 | + 'message' => '.توکن نامعتبر است', |
|
158 | + 'type' => 'error' |
|
159 | + ], |
|
160 | + |
|
161 | + 5445 => [ |
|
162 | + 'message' => '.ارتباط با پایگاه داده مشکل دارد', |
|
163 | + 'type' => 'error' |
|
164 | + ], |
|
165 | + |
|
166 | + 5448 => [ |
|
167 | + 'message' => '.عملیات درج درست اجرا نشده است', |
|
168 | + 'type' => 'error' |
|
169 | + ], |
|
170 | + |
|
171 | + 5447 => [ |
|
172 | + 'message' => '.عملیات پاک کردن درست اجرا نشده است', |
|
173 | + 'type' => 'error' |
|
174 | + ], |
|
175 | + |
|
176 | + 5449 => [ |
|
177 | + 'message' => '.عملیات ویرایش درست اجرا نشده است', |
|
178 | + 'type' => 'error' |
|
179 | + ] |
|
180 | 180 | |
181 | 181 | ]; |
@@ -2,186 +2,186 @@ |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - 'success' => [ |
|
6 | - |
|
7 | - 'insert' => 'The requested parameter is Added successfully!', |
|
8 | - |
|
9 | - 'delete' => 'The requested parameter is deleted successfully!', |
|
10 | - |
|
11 | - 'update' => 'The requested parameter is updated successfully!' |
|
12 | - |
|
13 | - ], |
|
14 | - |
|
15 | - 1001 => [ |
|
16 | - 'message' => 'Oops... Requested field is not found!', |
|
17 | - 'type' => 'error' |
|
18 | - ], |
|
19 | - |
|
20 | - 1002 => [ |
|
21 | - 'message' => 'Oops... Requested User does not exists!', |
|
22 | - 'type' => 'error' |
|
23 | - ], |
|
24 | - |
|
25 | - 1003 => [ |
|
26 | - 'message' => 'Oops... Client type is not entered!', |
|
27 | - 'type' => 'error' |
|
28 | - ], |
|
29 | - |
|
30 | - 1004 => [ |
|
31 | - 'message' => 'Failed because of duplicate', |
|
32 | - 'type' => 'error' |
|
33 | - ], |
|
34 | - |
|
35 | - 1005 => [ |
|
36 | - 'message' => 'Failed because of dablicated user role', |
|
37 | - 'type' => 'error' |
|
38 | - ], |
|
39 | - |
|
40 | - 3001 => [ |
|
41 | - 'message' => 'You are not logged on', |
|
42 | - 'type' => 'error', |
|
43 | - 'cat' => 'auth', |
|
44 | - 'short' => 'not-logged-on' |
|
45 | - ], |
|
46 | - |
|
47 | - 3002 => [ |
|
48 | - 'message' => 'Application token did not generated successfully', |
|
49 | - 'type' => 'error', |
|
50 | - 'cat' => 'auth' |
|
51 | - ], |
|
52 | - |
|
53 | - 3003 =>[ |
|
54 | - 'message' => 'User token did not generated successfully', |
|
55 | - 'type' => 'error', |
|
56 | - 'cat' => 'auth' |
|
57 | - ], |
|
58 | - |
|
59 | - 3004 => [ |
|
60 | - 'message' => 'Request token have no agency access', |
|
61 | - 'type' => 'error', |
|
62 | - 'cat' => 'auth' |
|
63 | - ], |
|
64 | - |
|
65 | - 3005 => [ |
|
66 | - 'message' => 'Request token did not contains user information', |
|
67 | - 'type' => 'error', |
|
68 | - 'cat' => 'auth' |
|
69 | - ], |
|
70 | - |
|
71 | - 3006 => [ |
|
72 | - 'message' => 'Did not set request token', |
|
73 | - 'type' => 'error', |
|
74 | - 'cat' => 'auth' |
|
75 | - ], |
|
76 | - |
|
77 | - 3007 => [ |
|
78 | - 'message' => 'can not decode the token', |
|
79 | - 'type' => 'error', |
|
80 | - 'cat' => 'auth' |
|
81 | - ], |
|
82 | - |
|
83 | - 3008 => [ |
|
84 | - 'message' => 'can not generate token for authentication', |
|
85 | - 'type' => 'error', |
|
86 | - 'cat' => 'auth' |
|
87 | - ], |
|
88 | - |
|
89 | - 3009 => [ |
|
90 | - 'message' => 'can not create token', |
|
91 | - 'type' => 'error', |
|
92 | - 'cat' => 'auth' |
|
93 | - ], |
|
94 | - |
|
95 | - 3010 => [ |
|
96 | - 'message' => 'Token expired!', |
|
97 | - 'type' => 'error', |
|
98 | - 'cat' => 'auth' |
|
99 | - ], |
|
100 | - |
|
101 | - 3011 => [ |
|
102 | - 'message' => 'Token is invalid!', |
|
103 | - 'type' => 'error', |
|
104 | - 'cat' => 'auth' |
|
105 | - ], |
|
106 | - |
|
107 | - 3012 => [ |
|
108 | - 'message' => 'Token Blacklisted', |
|
109 | - 'type' => 'error', |
|
110 | - 'cat' => 'auth' |
|
111 | - ], |
|
112 | - |
|
113 | - 3013 => [ |
|
114 | - 'message' => 'Payload invalid!', |
|
115 | - 'type' => 'error', |
|
116 | - 'cat' => 'auth' |
|
117 | - ], |
|
118 | - |
|
119 | - 3014 => [ |
|
120 | - 'message' => 'Claim Invalid', |
|
121 | - 'type' => 'error', |
|
122 | - 'cat' => 'auth' |
|
123 | - ], |
|
124 | - |
|
125 | - 3015 => [ |
|
126 | - 'message' => 'An error occurred on token validation', |
|
127 | - 'type' => 'error', |
|
128 | - 'cat' => 'auth' |
|
129 | - ], |
|
130 | - |
|
131 | - 3016 => [ |
|
132 | - |
|
133 | - 'message' => 'This domain has been blocked', |
|
134 | - 'type' => 'error' |
|
135 | - ] |
|
136 | - |
|
137 | - 5401 => [ |
|
138 | - 'message' => 'Authentication unauthorized...', |
|
139 | - 'type' => 'error' |
|
140 | - ], |
|
141 | - |
|
142 | - 5404 => [ |
|
143 | - 'message' => 'Oops... The requested page not found!', |
|
144 | - 'type' => 'error' |
|
145 | - ], |
|
146 | - |
|
147 | - 5405 => [ |
|
148 | - 'message' => 'Oops... The method you requested is not allowed!', |
|
149 | - 'type' => 'error' |
|
150 | - ], |
|
151 | - |
|
152 | - 5406 => [ |
|
153 | - 'message' => 'Oops... The parameters you entered are wrong!', |
|
154 | - 'type' => 'error' |
|
155 | - ], |
|
156 | - |
|
157 | - 5420 => [ |
|
158 | - 'message' => 'Validation Error', |
|
159 | - 'type' => 'error' |
|
160 | - ], |
|
161 | - |
|
162 | - 5422 => [ |
|
163 | - 'message' => 'Token is not valid', |
|
164 | - 'type' => 'error' |
|
165 | - ], |
|
166 | - |
|
167 | - 5445 => [ |
|
168 | - 'message' => 'Oops... Database connection refused', |
|
169 | - 'type' => 'error' |
|
170 | - ], |
|
171 | - |
|
172 | - 5448 => [ |
|
173 | - 'message' => 'Oops... Insert action was not successfully executed', |
|
174 | - 'type' => 'error' |
|
175 | - ], |
|
176 | - |
|
177 | - 5447 => [ |
|
178 | - 'message' => 'Oops... Delete action was not successfully executed', |
|
179 | - 'type' => 'error' |
|
180 | - ], |
|
181 | - |
|
182 | - 5449 => [ |
|
183 | - 'message' => 'Oops... Update action was not successfully executed', |
|
184 | - 'type' => 'error' |
|
185 | - ] |
|
5 | + 'success' => [ |
|
6 | + |
|
7 | + 'insert' => 'The requested parameter is Added successfully!', |
|
8 | + |
|
9 | + 'delete' => 'The requested parameter is deleted successfully!', |
|
10 | + |
|
11 | + 'update' => 'The requested parameter is updated successfully!' |
|
12 | + |
|
13 | + ], |
|
14 | + |
|
15 | + 1001 => [ |
|
16 | + 'message' => 'Oops... Requested field is not found!', |
|
17 | + 'type' => 'error' |
|
18 | + ], |
|
19 | + |
|
20 | + 1002 => [ |
|
21 | + 'message' => 'Oops... Requested User does not exists!', |
|
22 | + 'type' => 'error' |
|
23 | + ], |
|
24 | + |
|
25 | + 1003 => [ |
|
26 | + 'message' => 'Oops... Client type is not entered!', |
|
27 | + 'type' => 'error' |
|
28 | + ], |
|
29 | + |
|
30 | + 1004 => [ |
|
31 | + 'message' => 'Failed because of duplicate', |
|
32 | + 'type' => 'error' |
|
33 | + ], |
|
34 | + |
|
35 | + 1005 => [ |
|
36 | + 'message' => 'Failed because of dablicated user role', |
|
37 | + 'type' => 'error' |
|
38 | + ], |
|
39 | + |
|
40 | + 3001 => [ |
|
41 | + 'message' => 'You are not logged on', |
|
42 | + 'type' => 'error', |
|
43 | + 'cat' => 'auth', |
|
44 | + 'short' => 'not-logged-on' |
|
45 | + ], |
|
46 | + |
|
47 | + 3002 => [ |
|
48 | + 'message' => 'Application token did not generated successfully', |
|
49 | + 'type' => 'error', |
|
50 | + 'cat' => 'auth' |
|
51 | + ], |
|
52 | + |
|
53 | + 3003 =>[ |
|
54 | + 'message' => 'User token did not generated successfully', |
|
55 | + 'type' => 'error', |
|
56 | + 'cat' => 'auth' |
|
57 | + ], |
|
58 | + |
|
59 | + 3004 => [ |
|
60 | + 'message' => 'Request token have no agency access', |
|
61 | + 'type' => 'error', |
|
62 | + 'cat' => 'auth' |
|
63 | + ], |
|
64 | + |
|
65 | + 3005 => [ |
|
66 | + 'message' => 'Request token did not contains user information', |
|
67 | + 'type' => 'error', |
|
68 | + 'cat' => 'auth' |
|
69 | + ], |
|
70 | + |
|
71 | + 3006 => [ |
|
72 | + 'message' => 'Did not set request token', |
|
73 | + 'type' => 'error', |
|
74 | + 'cat' => 'auth' |
|
75 | + ], |
|
76 | + |
|
77 | + 3007 => [ |
|
78 | + 'message' => 'can not decode the token', |
|
79 | + 'type' => 'error', |
|
80 | + 'cat' => 'auth' |
|
81 | + ], |
|
82 | + |
|
83 | + 3008 => [ |
|
84 | + 'message' => 'can not generate token for authentication', |
|
85 | + 'type' => 'error', |
|
86 | + 'cat' => 'auth' |
|
87 | + ], |
|
88 | + |
|
89 | + 3009 => [ |
|
90 | + 'message' => 'can not create token', |
|
91 | + 'type' => 'error', |
|
92 | + 'cat' => 'auth' |
|
93 | + ], |
|
94 | + |
|
95 | + 3010 => [ |
|
96 | + 'message' => 'Token expired!', |
|
97 | + 'type' => 'error', |
|
98 | + 'cat' => 'auth' |
|
99 | + ], |
|
100 | + |
|
101 | + 3011 => [ |
|
102 | + 'message' => 'Token is invalid!', |
|
103 | + 'type' => 'error', |
|
104 | + 'cat' => 'auth' |
|
105 | + ], |
|
106 | + |
|
107 | + 3012 => [ |
|
108 | + 'message' => 'Token Blacklisted', |
|
109 | + 'type' => 'error', |
|
110 | + 'cat' => 'auth' |
|
111 | + ], |
|
112 | + |
|
113 | + 3013 => [ |
|
114 | + 'message' => 'Payload invalid!', |
|
115 | + 'type' => 'error', |
|
116 | + 'cat' => 'auth' |
|
117 | + ], |
|
118 | + |
|
119 | + 3014 => [ |
|
120 | + 'message' => 'Claim Invalid', |
|
121 | + 'type' => 'error', |
|
122 | + 'cat' => 'auth' |
|
123 | + ], |
|
124 | + |
|
125 | + 3015 => [ |
|
126 | + 'message' => 'An error occurred on token validation', |
|
127 | + 'type' => 'error', |
|
128 | + 'cat' => 'auth' |
|
129 | + ], |
|
130 | + |
|
131 | + 3016 => [ |
|
132 | + |
|
133 | + 'message' => 'This domain has been blocked', |
|
134 | + 'type' => 'error' |
|
135 | + ] |
|
136 | + |
|
137 | + 5401 => [ |
|
138 | + 'message' => 'Authentication unauthorized...', |
|
139 | + 'type' => 'error' |
|
140 | + ], |
|
141 | + |
|
142 | + 5404 => [ |
|
143 | + 'message' => 'Oops... The requested page not found!', |
|
144 | + 'type' => 'error' |
|
145 | + ], |
|
146 | + |
|
147 | + 5405 => [ |
|
148 | + 'message' => 'Oops... The method you requested is not allowed!', |
|
149 | + 'type' => 'error' |
|
150 | + ], |
|
151 | + |
|
152 | + 5406 => [ |
|
153 | + 'message' => 'Oops... The parameters you entered are wrong!', |
|
154 | + 'type' => 'error' |
|
155 | + ], |
|
156 | + |
|
157 | + 5420 => [ |
|
158 | + 'message' => 'Validation Error', |
|
159 | + 'type' => 'error' |
|
160 | + ], |
|
161 | + |
|
162 | + 5422 => [ |
|
163 | + 'message' => 'Token is not valid', |
|
164 | + 'type' => 'error' |
|
165 | + ], |
|
166 | + |
|
167 | + 5445 => [ |
|
168 | + 'message' => 'Oops... Database connection refused', |
|
169 | + 'type' => 'error' |
|
170 | + ], |
|
171 | + |
|
172 | + 5448 => [ |
|
173 | + 'message' => 'Oops... Insert action was not successfully executed', |
|
174 | + 'type' => 'error' |
|
175 | + ], |
|
176 | + |
|
177 | + 5447 => [ |
|
178 | + 'message' => 'Oops... Delete action was not successfully executed', |
|
179 | + 'type' => 'error' |
|
180 | + ], |
|
181 | + |
|
182 | + 5449 => [ |
|
183 | + 'message' => 'Oops... Update action was not successfully executed', |
|
184 | + 'type' => 'error' |
|
185 | + ] |
|
186 | 186 | |
187 | 187 | ]; |