1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/ClientContact.php

131 lines
2.8 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
2019-07-08 02:08:57 +02:00
use App\Models\Company;
use App\Models\User;
use App\Notifications\ClientContactResetPassword as ResetPasswordNotification;
use App\Notifications\ClientContactResetPassword;
use App\Utils\Traits\MakesHash;
use Hashids\Hashids;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laracasts\Presenter\PresentableTrait;
2019-08-08 10:13:32 +02:00
use Illuminate\Support\Facades\Log;
class ClientContact extends Authenticatable
{
use Notifiable;
use MakesHash;
use PresentableTrait;
use SoftDeletes;
/* Used to authenticate a contact */
protected $guard = 'contact';
/* Allow microtime timestamps */
protected $dateFormat = 'Y-m-d H:i:s.u';
2019-08-14 02:15:21 +02:00
protected $presenter = 'App\Models\Presenters\ClientContactPresenter';
protected $dates = [
'deleted_at'
];
2019-08-02 02:31:48 +02:00
protected $appends = [
'hashed_id'
];
2019-08-14 02:15:21 +02:00
protected $with = [
2019-08-21 06:29:07 +02:00
'client',
'company'
2019-08-14 02:15:21 +02:00
];
protected $hidden = [
'password',
'remember_token',
2019-08-08 13:07:26 +02:00
'user_id',
'company_id',
'client_id',
'google_2fa_secret',
'id',
'oauth_provider_id',
'oauth_user_id',
'token',
];
protected $fillable = [
'first_name',
'last_name',
'phone',
'custom_value1',
'custom_value2',
'custom_value3',
'custom_value4',
'email',
];
2019-08-08 02:22:54 +02:00
2019-08-14 02:15:21 +02:00
public function getHashedIdAttribute()
{
return $this->encodePrimaryKey($this->id);
}
/**/
public function getRouteKeyName()
{
return 'contact_id';
}
public function getContactIdAttribute()
{
return $this->encodePrimaryKey($this->id);
}
2019-08-08 10:13:32 +02:00
public function setAvatarAttribute($value)
2019-08-08 02:22:54 +02:00
{
2019-08-08 10:13:32 +02:00
2019-08-08 13:07:26 +02:00
if(!filter_var($value, FILTER_VALIDATE_URL) && $value)
2019-08-08 10:13:32 +02:00
$this->attributes['avatar'] = url('/') . $value;
2019-08-08 02:22:54 +02:00
else
2019-08-08 10:13:32 +02:00
$this->attributes['avatar'] = $value;
2019-08-08 02:22:54 +02:00
}
public function client()
{
2019-07-10 03:42:34 +02:00
return $this->belongsTo(Client::class);
}
public function primary_contact()
{
2019-07-10 03:42:34 +02:00
return $this->where('is_primary', true);
}
2019-07-08 02:08:57 +02:00
public function company()
{
return $this->belongsTo(Company::class);
}
public function user()
{
return $this->belongsTo(User::class);
}
public function sendPasswordResetNotification($token)
{
$this->notify(new ClientContactResetPassword($token));
}
}