openstamanager/modules/newsletter/src/Newsletter.php

112 lines
3.0 KiB
PHP
Raw Normal View History

2019-08-27 17:25:52 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2019-08-27 17:25:52 +02:00
namespace Modules\Newsletter;
use Common\SimpleModelTrait;
use Illuminate\Database\Eloquent\Model;
2019-08-27 17:25:52 +02:00
use Illuminate\Database\Eloquent\SoftDeletes;
use Models\User;
use Modules\Anagrafiche\Anagrafica;
2019-08-29 10:25:14 +02:00
use Modules\Emails\Account;
use Modules\Emails\Mail;
use Modules\Emails\Template;
2019-08-28 16:58:47 +02:00
use Traits\RecordTrait;
2019-08-27 17:25:52 +02:00
class Newsletter extends Model
{
use SimpleModelTrait;
2019-08-27 17:25:52 +02:00
use SoftDeletes;
2019-08-28 16:58:47 +02:00
use RecordTrait;
2019-08-27 17:25:52 +02:00
2019-08-29 10:25:14 +02:00
protected $table = 'em_newsletters';
2019-08-27 17:25:52 +02:00
2019-08-29 10:25:14 +02:00
public static function build(User $user, Template $template, $name)
2019-08-27 17:25:52 +02:00
{
$model = new static();
2019-08-27 17:25:52 +02:00
$model->user()->associate($user);
$model->template()->associate($template);
$model->name = $name;
$model->subject = $template->subject;
$model->content = $template->body;
$model->state = 'DEV';
$model->save();
return $model;
}
2019-08-28 16:58:47 +02:00
/**
* Restituisce il nome del modulo a cui l'oggetto è collegato.
*
* @return string
*/
public function getModuleAttribute()
{
return 'Newsletter';
}
public function fixStato()
{
$mails = $this->emails;
$completed = true;
foreach ($mails as $mail) {
if (empty($mail->sent_at)) {
$completed = false;
break;
}
}
$this->state = $completed ? 'OK' : $this->state;
$this->completed_at = $completed ? date('Y-m-d H:i:s') : $this->completed_at;
$this->save();
}
2019-08-27 17:25:52 +02:00
// Relazione Eloquent
public function anagrafiche()
{
2021-06-08 13:19:29 +02:00
return $this->belongsToMany(Anagrafica::class, 'em_newsletter_anagrafica', 'id_newsletter', 'id_anagrafica')->orderByRaw('IF(email=\'\',email,enable_newsletter) ASC')->orderBy('ragione_sociale', 'ASC')->withPivot('id_email')->withTrashed();
2019-08-27 17:25:52 +02:00
}
public function emails()
{
2019-08-29 15:09:01 +02:00
return $this->belongsToMany(Mail::class, 'em_newsletter_anagrafica', 'id_newsletter', 'id_email')->withPivot('id_anagrafica');
2019-08-27 17:25:52 +02:00
}
public function account()
{
2019-08-29 10:25:14 +02:00
return $this->belongsTo(Account::class, 'id_account');
2019-08-27 17:25:52 +02:00
}
public function template()
{
2019-08-29 10:25:14 +02:00
return $this->belongsTo(Template::class, 'id_template');
2019-08-27 17:25:52 +02:00
}
public function user()
{
return $this->belongsTo(User::class, 'created_by');
}
}