This repository has been archived by the owner on Jul 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from ollieread/dev
Merging in reminders
- Loading branch information
Showing
10 changed files
with
675 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?php namespace Ollieread\Multiauth\Console; | ||
|
||
use Illuminate\Console\Command; | ||
use Illuminate\Filesystem\Filesystem; | ||
|
||
class RemindersTableCommand extends Command { | ||
|
||
/** | ||
* The console command name. | ||
* | ||
* @var string | ||
*/ | ||
protected $name = 'multiauth:reminders-table'; | ||
|
||
/** | ||
* The console command description. | ||
* | ||
* @var string | ||
*/ | ||
protected $description = 'Create a migration for the password reminders table'; | ||
|
||
/** | ||
* The filesystem instance. | ||
* | ||
* @var \Illuminate\Filesystem\Filesystem | ||
*/ | ||
protected $files; | ||
|
||
/** | ||
* Create a new reminder table command instance. | ||
* | ||
* @param \Illuminate\Filesystem\Filesystem $files | ||
* @return void | ||
*/ | ||
public function __construct(Filesystem $files) | ||
{ | ||
parent::__construct(); | ||
|
||
$this->files = $files; | ||
} | ||
|
||
/** | ||
* Execute the console command. | ||
* | ||
* @return void | ||
*/ | ||
public function fire() | ||
{ | ||
$fullPath = $this->createBaseMigration(); | ||
|
||
$this->files->put($fullPath, $this->getMigrationStub()); | ||
|
||
$this->info('Migration created successfully!'); | ||
|
||
$this->call('dump-autoload'); | ||
} | ||
|
||
/** | ||
* Create a base migration file for the reminders. | ||
* | ||
* @return string | ||
*/ | ||
protected function createBaseMigration() | ||
{ | ||
$name = 'create_password_reminders_table'; | ||
|
||
$path = $this->laravel['path'].'/database/migrations'; | ||
|
||
return $this->laravel['migration.creator']->create($name, $path); | ||
} | ||
|
||
/** | ||
* Get the contents of the reminder migration stub. | ||
* | ||
* @return string | ||
*/ | ||
protected function getMigrationStub() | ||
{ | ||
$stub = $this->files->get(__DIR__.'/stubs/reminders.stub'); | ||
|
||
return str_replace('password_reminders', $this->getTable(), $stub); | ||
} | ||
|
||
/** | ||
* Get the password reminder table name. | ||
* | ||
* @return string | ||
*/ | ||
protected function getTable() | ||
{ | ||
return $this->laravel['config']->get('auth.reminder.table'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Database\Migrations\Migration; | ||
|
||
class CreatePasswordRemindersTable extends Migration { | ||
|
||
/** | ||
* Run the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function up() | ||
{ | ||
Schema::create('password_reminders', function(Blueprint $table) | ||
{ | ||
$table->string('type')->index(); | ||
$table->string('email')->index(); | ||
$table->string('token')->index(); | ||
$table->timestamp('created_at'); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function down() | ||
{ | ||
Schema::drop('password_reminders'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.