Passed
Push — master ( 345304...05a102 )
by IRFA
04:18
created
src/Console/Commands/UnlockCommands.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -41,15 +41,15 @@
 block discarded – undo
41 41
     { 
42 42
         $ret = $core->unlock_account($this->argument('username'));
43 43
             $table = new Table($this->output);
44
-                $read_enc = json_decode( $ret);
44
+                $read_enc = json_decode($ret);
45 45
                 $time = $read_enc->last_attemps;
46 46
                 $attemps = $read_enc->attemps;
47 47
                 $ip = $read_enc->ip;
48 48
                 $table->setRows([
49
-                        ['<fg=cyan>Login attemps',  $attemps],
50
-                        ['<fg=cyan>Last login attemps',$time],
51
-                        ['<fg=cyan>Last IP Address',empty(end($ip))? "unknown":end($ip)],
52
-                        ['<fg=cyan>Unlocked at',date('Y-m-d H:i:s', time())],
49
+                        ['<fg=cyan>Login attemps', $attemps],
50
+                        ['<fg=cyan>Last login attemps', $time],
51
+                        ['<fg=cyan>Last IP Address', empty(end($ip)) ? "unknown" : end($ip)],
52
+                        ['<fg=cyan>Unlocked at', date('Y-m-d H:i:s', time())],
53 53
                     ]);
54 54
                         $table->render();
55 55
                 // $this->line('<fg=yellow>Valid input is  lock, unlock, and attemps.');
Please login to merge, or discard this patch.
src/Console/Commands/AttempsCommands.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,14 +41,14 @@
 block discarded – undo
41 41
     { 
42 42
         $ret = $core->check_account($this->argument('username'));
43 43
             $table = new Table($this->output);
44
-                $read_enc = json_decode( $ret);
44
+                $read_enc = json_decode($ret);
45 45
                 $time = $read_enc->last_attemps;
46 46
                 $attemps = $read_enc->attemps;
47 47
                 $ip = $read_enc->ip;
48 48
                 $table->setRows([
49
-                        ['<fg=yellow>Login attemps',  $attemps],
50
-                        ['<fg=yellow>Last login attemps',$time],
51
-                        ['<fg=yellow>Last IP Address',empty(end($ip))? "unknown":end($ip)],]);
49
+                        ['<fg=yellow>Login attemps', $attemps],
50
+                        ['<fg=yellow>Last login attemps', $time],
51
+                        ['<fg=yellow>Last IP Address', empty(end($ip)) ? "unknown" : end($ip)], ]);
52 52
                         $table->render();
53 53
                 // $this->line('<fg=yellow>Valid input is  lock, unlock, and attemps.');
54 54
         
Please login to merge, or discard this patch.
src/Console/Commands/ClearLockCommands.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@
 block discarded – undo
40 40
     public function handle(Core $core)
41 41
     {
42 42
         $this->line('Cleaning locked user...');
43
-        if($core->clear_all()){
43
+        if ($core->clear_all()) {
44 44
             $table = new Table($this->output);
45 45
             $table->setRows([
46 46
                         ['<fg=green>Locked Account(s) Cleared.'],
47 47
                        
48 48
                     ]);
49 49
                         $table->render();
50
-        } else{
50
+        } else {
51 51
                 $this->line('<fg=red> Clearing failed.');
52 52
         }
53 53
     }
Please login to merge, or discard this patch.
src/Console/Commands/LockCommands.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,14 +40,14 @@
 block discarded – undo
40 40
     public function handle(Core $core)
41 41
     {
42 42
         $this->line('Locking '.$this->argument('username').'...');
43
-        if($core->lock_account($this->argument('username'))!="error"){
43
+        if ($core->lock_account($this->argument('username')) != "error") {
44 44
             $table = new Table($this->output);
45 45
             $table->setRows([
46 46
                         ['<fg=green>'.$this->argument('username').' successfully locked.'],
47 47
                        
48 48
                     ]);
49 49
                         $table->render();
50
-        } else{
50
+        } else {
51 51
                 $this->line('<fg=red> Locking failed.');
52 52
         }
53 53
     }
Please login to merge, or discard this patch.
src/Console/Commands/LockInfoPackage.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
     $conf = config('irfa.lockout');
57 57
 
58 58
         $this->line('<fg=default>-------------------------------------------------------------------------------');
59
-         $this->line('<fg=yellow>Commands');
60
-          $table = new Table($this->output);
59
+            $this->line('<fg=yellow>Commands');
60
+            $table = new Table($this->output);
61 61
             $table->setRows([
62 62
                 ['<fg=cyan>php artisan lockout:lock {username}','<fg=default>locking account'],
63 63
                 ['<fg=cyan>php artisan lockout:unlock {username}','<fg=default>unlocking account'],
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
                 ['<fg=cyan>php artisan lockout:is-locked {username}','<fg=default>checking account (return boolean)'],
66 66
                 ['<fg=cyan>php artisan lockout:clear','<fg=default>unlocking all account']]
67 67
             );
68
-          $table->render();
69
-         $this->line('<fg=default>-------------------------------------------------------------------------------');
68
+            $table->render();
69
+            $this->line('<fg=default>-------------------------------------------------------------------------------');
70 70
         $this->line('<fg=yellow>Configuration');
71 71
     foreach($conf as $key => $val){
72 72
         if(is_array($val)){
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
             $row[] = ['<fg=default>'.$key,' <fg=cyan>'.$vl];
80 80
         }
81 81
         // dd($row);
82
-          $table = new Table($this->output);
82
+            $table = new Table($this->output);
83 83
             $table->setRows($row);
84 84
                         $table->render();
85 85
     }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $this->informasi();
42 42
     }
43 43
 
44
-    private function informasi(){
44
+    private function informasi() {
45 45
             $this->line(" _____      __             _                _               _   
46 46
 |_   _|    / _|           | |              | |             | |  
47 47
   | | _ __| |_ __ _ ______| |     ___   ___| | _____  _   _| |_ 
@@ -59,24 +59,24 @@  discard block
 block discarded – undo
59 59
          $this->line('<fg=yellow>Commands');
60 60
           $table = new Table($this->output);
61 61
             $table->setRows([
62
-                ['<fg=cyan>php artisan lockout:lock {username}','<fg=default>locking account'],
63
-                ['<fg=cyan>php artisan lockout:unlock {username}','<fg=default>unlocking account'],
64
-                ['<fg=cyan>php artisan lockout:check {username}','<fg=default>checking account with details'],
65
-                ['<fg=cyan>php artisan lockout:is-locked {username}','<fg=default>checking account (return boolean)'],
66
-                ['<fg=cyan>php artisan lockout:clear','<fg=default>unlocking all account']]
62
+                ['<fg=cyan>php artisan lockout:lock {username}', '<fg=default>locking account'],
63
+                ['<fg=cyan>php artisan lockout:unlock {username}', '<fg=default>unlocking account'],
64
+                ['<fg=cyan>php artisan lockout:check {username}', '<fg=default>checking account with details'],
65
+                ['<fg=cyan>php artisan lockout:is-locked {username}', '<fg=default>checking account (return boolean)'],
66
+                ['<fg=cyan>php artisan lockout:clear', '<fg=default>unlocking all account']]
67 67
             );
68 68
           $table->render();
69 69
          $this->line('<fg=default>-------------------------------------------------------------------------------');
70 70
         $this->line('<fg=yellow>Configuration');
71
-    foreach($conf as $key => $val){
72
-        if(is_array($val)){
73
-            foreach($val as $v){
71
+    foreach ($conf as $key => $val) {
72
+        if (is_array($val)) {
73
+            foreach ($val as $v) {
74 74
                 $vl .= $v.", ";
75 75
             }
76
-        } else{
76
+        } else {
77 77
                 $vl = $val;
78 78
             }
79
-            $row[] = ['<fg=default>'.$key,' <fg=cyan>'.$vl];
79
+            $row[] = ['<fg=default>'.$key, ' <fg=cyan>'.$vl];
80 80
         }
81 81
         // dd($row);
82 82
           $table = new Table($this->output);
Please login to merge, or discard this patch.
src/Console/Commands/CheckLockedCommands.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
             if($lock){
46 46
                 $table->setRows([
47 47
                         ['<fg=yellow>'.$username.' is locked',]]);
48
-                 $table->render();
48
+                    $table->render();
49 49
                 $this->line('<fg=default>Run <fg=cyan>php artisan lockout:unlock '.$username.'<fg=default> to unlock account.'); 
50 50
             } else{
51
-                 $table->setRows([
51
+                    $table->setRows([
52 52
                         ['<fg=green>'.$username.' is unlocked',]]);
53
-                  $table->render();
54
-                         $this->line('<fg=default>Run <fg=cyan>php artisan lockout:lock '.$username.'<fg=default> to lock account.');  
53
+                    $table->render();
54
+                            $this->line('<fg=default>Run <fg=cyan>php artisan lockout:lock '.$username.'<fg=default> to lock account.');  
55 55
             }   
56 56
                        
57 57
                 // $this->line('<fg=yellow>Valid input is  lock, unlock, and attemps.');
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 namespace Irfa\Lockout\Console\Commands;
4 4
 
5 5
 use Illuminate\Console\Command;
6
-use Irfa\Lockout\Func\Core,Lockout;
6
+use Irfa\Lockout\Func\Core, Lockout;
7 7
 use Symfony\Component\Console\Helper\Table;
8 8
 
9 9
 class CheckLockedCommands extends Command
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
         $username = $this->argument('username');
43 43
         $lock = Lockout::isLocked($username);
44 44
             $table = new Table($this->output);
45
-            if($lock){
45
+            if ($lock) {
46 46
                 $table->setRows([
47
-                        ['<fg=yellow>'.$username.' is locked',]]);
47
+                        ['<fg=yellow>'.$username.' is locked', ]]);
48 48
                  $table->render();
49 49
                 $this->line('<fg=default>Run <fg=cyan>php artisan lockout:unlock '.$username.'<fg=default> to unlock account.'); 
50
-            } else{
50
+            } else {
51 51
                  $table->setRows([
52
-                        ['<fg=green>'.$username.' is unlocked',]]);
52
+                        ['<fg=green>'.$username.' is unlocked', ]]);
53 53
                   $table->render();
54 54
                          $this->line('<fg=default>Run <fg=cyan>php artisan lockout:lock '.$username.'<fg=default> to lock account.');  
55 55
             }   
Please login to merge, or discard this patch.
src/Func/Lockout.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
         }
17 17
         return true;
18 18
     }
19
-  	public function isLocked($username){
20
-  		return $this->is_locked($username);
21
-  	}
19
+        public function isLocked($username){
20
+            return $this->is_locked($username);
21
+        }
22 22
     public function message(){
23 23
         return $this->showMessage();
24 24
     }
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -6,58 +6,58 @@
 block discarded – undo
6 6
 
7 7
 class Lockout extends Core {
8 8
 	
9
-    public function unlock($username){
10
-        if(is_array($username)){
11
-            foreach($username as $key){
9
+    public function unlock($username) {
10
+        if (is_array($username)) {
11
+            foreach ($username as $key) {
12 12
                 $this->_unlock($key);
13 13
             }
14
-        } else{
14
+        } else {
15 15
             $this->_unlock($username);
16 16
         }
17 17
         return true;
18 18
     }
19
-  	public function isLocked($username){
19
+  	public function isLocked($username) {
20 20
   		return $this->is_locked($username);
21 21
   	}
22
-    public function message(){
22
+    public function message() {
23 23
         return $this->showMessage();
24 24
     }
25
-    public function lock($username){
26
-        if(is_array($username)){
27
-            foreach($username as $key){
25
+    public function lock($username) {
26
+        if (is_array($username)) {
27
+            foreach ($username as $key) {
28 28
                     $this->_lock($key);
29 29
             }
30
-        } else{
30
+        } else {
31 31
                 $this->_lock($username);
32 32
         }
33 33
         return true;
34 34
     }
35 35
     public function check($username) {	 
36 36
         $ret = null;
37
-        if(is_array($username)){
38
-            foreach($username as $key){
37
+        if (is_array($username)) {
38
+            foreach ($username as $key) {
39 39
                 $get = $this->_check($key);
40
-                if(!empty($get)){
40
+                if (!empty($get)) {
41 41
                     $ret[] = $get;
42 42
                 }
43 43
             }
44
-        } else{
44
+        } else {
45 45
                 $ret = $this->_check($username);
46 46
         }
47 47
         $ret = json_encode($ret);
48 48
         return json_decode($ret);
49 49
     }
50
-    public function clearLocked(){
50
+    public function clearLocked() {
51 51
         return $this->clear_all();
52 52
     }
53 53
 
54
-    private function _unlock($username){
54
+    private function _unlock($username) {
55 55
         $this->unlock_account($username);
56 56
     }
57
-    private function _lock($username){
57
+    private function _lock($username) {
58 58
         $this->lock_account($username);
59 59
     }
60
-    private function _check($username){
61
-        return json_decode($this->check_account($username),true);
60
+    private function _check($username) {
61
+        return json_decode($this->check_account($username), true);
62 62
     }
63 63
 }
Please login to merge, or discard this patch.
src/Initializing/Variable.php 2 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -5,29 +5,29 @@
 block discarded – undo
5 5
 
6 6
 class Variable {
7 7
 
8
-		protected $ip;
9
-	    protected $input;
10
-	    protected $dir;
11
-	    protected $path;
12
-	    protected $attemps;
13
-	    protected $permission_code;
8
+        protected $ip;
9
+        protected $input;
10
+        protected $dir;
11
+        protected $path;
12
+        protected $attemps;
13
+        protected $permission_code;
14 14
 
15
-	    /**
16
-		 * Initializing variable.
17
-		 *
18
-		 * @return void
19
-		 */
20
-		protected function initVar(){
21
-	        $this->ip = Request::ip();
22
-	        $this->input = Request::input(config('irfa.lockout.input_name'));
23
-	        $this->dir = config('irfa.lockout.lockout_file_path');
24
-	        $this->attemps = config('irfa.lockout.login_attemps');
25
-	        $this->path = $this->dir.md5($this->input);
26
-    	}
15
+        /**
16
+         * Initializing variable.
17
+         *
18
+         * @return void
19
+         */
20
+        protected function initVar(){
21
+            $this->ip = Request::ip();
22
+            $this->input = Request::input(config('irfa.lockout.input_name'));
23
+            $this->dir = config('irfa.lockout.lockout_file_path');
24
+            $this->attemps = config('irfa.lockout.login_attemps');
25
+            $this->path = $this->dir.md5($this->input);
26
+        }
27 27
 
28
-    	protected function setPath($username){
29
-    		$this->path = $this->dir.md5($username);
30
-    		$this->input = $username;
31
-    	}
28
+        protected function setPath($username){
29
+            $this->path = $this->dir.md5($username);
30
+            $this->input = $username;
31
+        }
32 32
 	
33
-	}
34 33
\ No newline at end of file
34
+    }
35 35
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 		 *
18 18
 		 * @return void
19 19
 		 */
20
-		protected function initVar(){
20
+		protected function initVar() {
21 21
 	        $this->ip = Request::ip();
22 22
 	        $this->input = Request::input(config('irfa.lockout.input_name'));
23 23
 	        $this->dir = config('irfa.lockout.lockout_file_path');
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	        $this->path = $this->dir.md5($this->input);
26 26
     	}
27 27
 
28
-    	protected function setPath($username){
28
+    	protected function setPath($username) {
29 29
     		$this->path = $this->dir.md5($username);
30 30
     		$this->input = $username;
31 31
     	}
Please login to merge, or discard this patch.
src/Console/Commands/TestingCommands.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     public function handle()
45 45
     {
46 46
         $domain = strtolower(config("app.name")).".com";
47
-         $this->line('<fg=default>--------------------------------------------');
47
+            $this->line('<fg=default>--------------------------------------------');
48 48
         $this->testWrite($domain);
49 49
         sleep(1);
50 50
         $this->testManualLock($domain);
@@ -56,45 +56,45 @@  discard block
 block discarded – undo
56 56
     }
57 57
     private function testWrite($domain){
58 58
         $test = new Testing();
59
-         if( $test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)){
60
-           $this->line('<fg=default>Auto Lock : <fg=green>OK');
59
+            if( $test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)){
60
+            $this->line('<fg=default>Auto Lock : <fg=green>OK');
61 61
         } elseif(!$test->testWritable('lock-test@'.$domain)){
62 62
             $this->success += 1;
63 63
             $this->line('<fg=default>Auto Lock : <fg=yellow>Warning (Permission denied)');
64 64
         } else{
65 65
             $this->error += 1;
66
-             $this->line('<fg=default>Auto Lock : <fg=red>Failed');
66
+                $this->line('<fg=default>Auto Lock : <fg=red>Failed');
67 67
         }
68 68
     } 
69 69
     private function testManualLock($domain){
70 70
         $test = new Testing();
71
-         if( $test->testManualLocking('lock-test@'.$domain)){
71
+            if( $test->testManualLocking('lock-test@'.$domain)){
72 72
             $this->success += 1;
73
-           $this->line('<fg=default>Manual Lock : <fg=green>OK');
73
+            $this->line('<fg=default>Manual Lock : <fg=green>OK');
74 74
         } else{
75 75
             $this->error += 1;
76
-             $this->line('<fg=default>Manual Lock : <fg=red>Failed');
76
+                $this->line('<fg=default>Manual Lock : <fg=red>Failed');
77 77
         }
78 78
     }
79 79
     private function testUnlock($domain){
80 80
         $test = new Testing();
81
-         if( $test->testUnlocking('lock-test@'.$domain)){
82
-           $this->success += 1;
83
-           $this->line('<fg=default>Unlock Account : <fg=green>OK');
81
+            if( $test->testUnlocking('lock-test@'.$domain)){
82
+            $this->success += 1;
83
+            $this->line('<fg=default>Unlock Account : <fg=green>OK');
84 84
         } else{
85
-             $this->error += 1;
86
-             $this->line('<fg=default>Unlock Account : <fg=red>Failed');
85
+                $this->error += 1;
86
+                $this->line('<fg=default>Unlock Account : <fg=red>Failed');
87 87
         }
88 88
     }
89 89
 
90 90
     private function testLocked($domain){
91 91
         $test = new Testing();
92
-         if( $test->testLockLogin('lock-test@'.$domain)){
93
-           $this->success += 1;
94
-           $this->line('<fg=default>Try Login with locked account : <fg=green>Account is Locked');
92
+            if( $test->testLockLogin('lock-test@'.$domain)){
93
+            $this->success += 1;
94
+            $this->line('<fg=default>Try Login with locked account : <fg=green>Account is Locked');
95 95
         } else{
96
-             $this->error += 1;
97
-             $this->line('<fg=default>Try Login with locked account : <fg=red>Account logged in');
96
+                $this->error += 1;
97
+                $this->line('<fg=default>Try Login with locked account : <fg=red>Account logged in');
98 98
         }
99 99
     }
100 100
    
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 
11 11
 class TestingCommands extends Command
12 12
 {
13
-    private $error=0;
14
-    private $success=0;
13
+    private $error = 0;
14
+    private $success = 0;
15 15
     /**
16 16
      * The name and signature of the console command.
17 17
      *
@@ -54,45 +54,45 @@  discard block
 block discarded – undo
54 54
         $this->testUnlock($domain);
55 55
 
56 56
     }
57
-    private function testWrite($domain){
57
+    private function testWrite($domain) {
58 58
         $test = new Testing();
59
-         if( $test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)){
59
+         if ($test->testWriteEventFailedLogin('lock-test@'.$domain) AND $test->testWritable('lock-test@'.$domain)) {
60 60
            $this->line('<fg=default>Auto Lock : <fg=green>OK');
61
-        } elseif(!$test->testWritable('lock-test@'.$domain)){
61
+        } elseif (!$test->testWritable('lock-test@'.$domain)) {
62 62
             $this->success += 1;
63 63
             $this->line('<fg=default>Auto Lock : <fg=yellow>Warning (Permission denied)');
64
-        } else{
64
+        } else {
65 65
             $this->error += 1;
66 66
              $this->line('<fg=default>Auto Lock : <fg=red>Failed');
67 67
         }
68 68
     } 
69
-    private function testManualLock($domain){
69
+    private function testManualLock($domain) {
70 70
         $test = new Testing();
71
-         if( $test->testManualLocking('lock-test@'.$domain)){
71
+         if ($test->testManualLocking('lock-test@'.$domain)) {
72 72
             $this->success += 1;
73 73
            $this->line('<fg=default>Manual Lock : <fg=green>OK');
74
-        } else{
74
+        } else {
75 75
             $this->error += 1;
76 76
              $this->line('<fg=default>Manual Lock : <fg=red>Failed');
77 77
         }
78 78
     }
79
-    private function testUnlock($domain){
79
+    private function testUnlock($domain) {
80 80
         $test = new Testing();
81
-         if( $test->testUnlocking('lock-test@'.$domain)){
81
+         if ($test->testUnlocking('lock-test@'.$domain)) {
82 82
            $this->success += 1;
83 83
            $this->line('<fg=default>Unlock Account : <fg=green>OK');
84
-        } else{
84
+        } else {
85 85
              $this->error += 1;
86 86
              $this->line('<fg=default>Unlock Account : <fg=red>Failed');
87 87
         }
88 88
     }
89 89
 
90
-    private function testLocked($domain){
90
+    private function testLocked($domain) {
91 91
         $test = new Testing();
92
-         if( $test->testLockLogin('lock-test@'.$domain)){
92
+         if ($test->testLockLogin('lock-test@'.$domain)) {
93 93
            $this->success += 1;
94 94
            $this->line('<fg=default>Try Login with locked account : <fg=green>Account is Locked');
95
-        } else{
95
+        } else {
96 96
              $this->error += 1;
97 97
              $this->line('<fg=default>Try Login with locked account : <fg=red>Account logged in');
98 98
         }
Please login to merge, or discard this patch.