| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- namespace App\Console\Commands;
- use App\Models\BookTitle;
- use App\Models\FtsText;
- use App\Models\PageNumber;
- use App\Models\PaliText;
- use App\Models\WbwTemplate;
- use App\Tools\Tools;
- use Illuminate\Console\Command;
- class UpgradePcdBookId extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'upgrade:pcd.book.id {--table=all}';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'Command description';
- /**
- * Create a new command instance.
- *
- * @return void
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * Execute the console command.
- *
- * @return int
- */
- public function handle()
- {
- if (Tools::isStop()) {
- return 0;
- }
- $table = $this->option('table');
- $bookTitles = BookTitle::orderBy('sn')->get();
- $bar = $this->output->createProgressBar(count($bookTitles));
- foreach ($bookTitles as $key => $value) {
- // code...
- if ($table === 'all' || $table === 'fts') {
- FtsText::where('book', $value->book)
- ->where('paragraph', '>=', $value->paragraph)
- ->update(['pcd_book_id' => $value->sn]);
- }
- if ($table === 'all' || $table === 'wbw') {
- WbwTemplate::where('book', $value->book)
- ->where('paragraph', '>=', $value->paragraph)
- ->update(['pcd_book_id' => $value->sn]);
- }
- if ($table === 'all' || $table === 'pali_text') {
- PaliText::where('book', $value->book)
- ->where('paragraph', '>=', $value->paragraph)
- ->update(['pcd_book_id' => $value->sn]);
- }
- if ($table === 'all' || $table === 'page_number') {
- PageNumber::where('book', $value->book)
- ->where('paragraph', '>=', $value->paragraph)
- ->update(['pcd_book_id' => $value->sn]);
- }
- $bar->advance();
- }
- $bar->finish();
- return 0;
- }
- }
|