You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Document;
|
|
use App\Mail\DocumentNotification;
|
|
use App\Models\DocumentReminder as ModelsDocumentReminder;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldBeUnique;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Log\Logger;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
class DocumentReminder implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
$now = now();
|
|
$documentIds = ModelsDocumentReminder::whereDate('date', $now)->pluck('document_id');
|
|
Log::info("DocumentReminder:: Schedule Run $now , with $documentIds");
|
|
|
|
$documents = Document::whereIn('id', $documentIds)->get();
|
|
|
|
foreach ($documents as $doc) {
|
|
Mail::to($doc->email)->send(new DocumentNotification($doc));
|
|
if ($doc->shares()->count() > 0) {
|
|
foreach ($doc->shares as $share) {
|
|
Mail::to($share->share_to)->send(new DocumentNotification($doc));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|