openstamanager/modules/emails/src/Account.php

89 lines
2.5 KiB
PHP
Executable File

<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* 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/>.
*/
namespace Modules\Emails;
use Carbon\Carbon;
use Common\SimpleModelTrait;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Modules\Emails\OAuth2\Google;
use Modules\Emails\OAuth2\Microsoft;
use Notifications\EmailNotification;
use Traits\LocalPoolTrait;
class Account extends Model
{
use SimpleModelTrait;
use LocalPoolTrait;
use SoftDeletes;
public static $providers = [
'microsoft' => [
'name' => 'Microsoft',
'class' => Microsoft::class,
'help' => 'https://docs.openstamanager.com/faq/configurazione-oauth2#microsoft',
],
'google' => [
'name' => 'Google',
'class' => Google::class,
'help' => 'https://docs.openstamanager.com/faq/configurazione-oauth2#google',
],
];
protected $table = 'em_accounts';
public function testConnection()
{
// Impostazione di connected_at a NULL
$this->connected_at = null;
$this->save();
// Creazione email di test
$mail = new EmailNotification($this->id);
// Tentativo di connessione
$result = $mail->testSMTP();
// Salvataggio della data di connessione per test riuscito
if ($result) {
$this->connected_at = Carbon::now();
$this->save();
}
return $result;
}
/* Relazioni Eloquent */
public function templates()
{
return $this->hasMany(Template::class, 'id_account');
}
public function oauth2()
{
return $this->belongsTo(\Models\OAuth2::class, 'id_oauth2');
}
public function emails()
{
return $this->hasMany(Mail::class, 'id_account');
}
}