1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/Jobs/Invitation/MarkOpened.php

65 lines
1.5 KiB
PHP
Raw Normal View History

2019-05-29 06:33:53 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-29 06:33:53 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-29 06:33:53 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-29 06:33:53 +02:00
*/
namespace App\Jobs\Invitation;
use App\Utils\Traits\NumberFormatter;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
//todo - ensure we are MultiDB Aware in dispatched jobs
2019-05-29 06:33:53 +02:00
class MarkOpened implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, NumberFormatter;
public $message_id;
public $entity;
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param string $message_id
* @param string $entity
2019-05-29 06:33:53 +02:00
*/
public function __construct(string $message_id, string $entity)
{
$this->message_id = $message_id;
$this->entity = $entity;
}
/**
* Execute the job.
*
*
2020-10-28 11:10:49 +01:00
* @return false
2019-05-29 06:33:53 +02:00
*/
public function handle()
{
$invitation = $this->entity::with('user', 'contact')
->whereMessageId($this->message_id)
->first();
if (! $invitation) {
return false;
}
$invitation->opened_date = now();
//$invitation->email_error = $error;
2019-05-29 06:33:53 +02:00
$invitation->save();
}
}