-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMongoDBPassportFix.php
102 lines (86 loc) · 2.26 KB
/
MongoDBPassportFix.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class MongoDBPassportFix extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'fix:passport
{--rollback : Rollback the Passport fix}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Fixes passport for MongoDB support';
/**
* MongoDB Model to use
*
* @var string
*/
protected $mongo_model = 'Jenssegers\Mongodb\Eloquent\Model';
/**
* Laravel Eloquent Model to Replace with
*
* @var string
*/
protected $laravel_model = 'Illuminate\Database\Eloquent\Model';
/**
* Passport vendor files location
*
* @var string
*/
protected $passport_path = 'vendor/laravel/passport/src/';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//
if (!$this->option('rollback'))
{
$this->fixFiles();
$this->info("Passport Files have been fixed for MongoDB");
} else {
$this->rollbackFiles();
$this->info("Passport Files have been rolled back for MongoDB");
}
}
/**
* Searches and fixes the passport files
*
* @return void
*/
protected function fixFiles()
{
foreach (glob(base_path($this->passport_path) . '*.php') as $filename)
{
$file = file_get_contents($filename);
file_put_contents($filename, str_replace($this->laravel_model, $this->mongo_model, $file));
//$this->info($filename . " has been Checked/Modified");
}
}
protected function rollbackFiles()
{
foreach (glob(base_path($this->passport_path) . '*.php') as $filename)
{
$file = file_get_contents($filename);
file_put_contents($filename, str_replace($this->mongo_model, $this->laravel_model, $file));
//$this->info($filename . " has been Checked/Modified");
}
}
}