2018-08-10 17:14:09 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Models;
|
|
|
|
|
2018-11-16 13:43:27 +01:00
|
|
|
use Common\Model;
|
2019-07-18 18:33:56 +02:00
|
|
|
use Intervention\Image\ImageManagerStatic;
|
2019-07-19 15:23:00 +02:00
|
|
|
use Modules\Anagrafiche\Anagrafica;
|
2018-08-10 17:14:09 +02:00
|
|
|
|
|
|
|
class User extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'zz_users';
|
|
|
|
|
|
|
|
protected $appends = [
|
|
|
|
'is_admin',
|
|
|
|
'gruppo',
|
2019-07-18 18:33:56 +02:00
|
|
|
'id_anagrafica',
|
2018-08-10 17:14:09 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'name', 'email', 'password',
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $is_admin;
|
|
|
|
protected $gruppo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be hidden for arrays.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $hidden = [
|
|
|
|
'password', 'remember_token',
|
|
|
|
];
|
|
|
|
|
2019-07-18 18:33:56 +02:00
|
|
|
/**
|
|
|
|
* Crea un nuovo utente.
|
|
|
|
*
|
2019-07-26 11:57:59 +02:00
|
|
|
* @param Group $gruppo
|
2019-07-18 18:33:56 +02:00
|
|
|
* @param string $username
|
|
|
|
* @param string $email
|
|
|
|
* @param string $password
|
|
|
|
*
|
|
|
|
* @return self
|
|
|
|
*/
|
|
|
|
public static function build(Group $gruppo, $username, $email, $password)
|
|
|
|
{
|
|
|
|
$model = parent::build();
|
|
|
|
|
|
|
|
$model->group()->associate($gruppo);
|
|
|
|
|
|
|
|
$model->username = $username;
|
|
|
|
$model->email = $email;
|
|
|
|
$model->password = $password;
|
|
|
|
|
2019-07-26 11:57:59 +02:00
|
|
|
$model->enabled = 1;
|
|
|
|
|
2019-07-18 18:33:56 +02:00
|
|
|
$model->save();
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
2018-08-10 17:14:09 +02:00
|
|
|
public function getIsAdminAttribute()
|
|
|
|
{
|
|
|
|
if (!isset($this->is_admin)) {
|
|
|
|
$this->is_admin = $this->getGruppoAttribute() == 'Amministratori';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->is_admin;
|
|
|
|
}
|
|
|
|
|
2019-07-18 18:33:56 +02:00
|
|
|
public function getIdAnagraficaAttribute()
|
|
|
|
{
|
|
|
|
return $this->attributes['idanagrafica'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setIdAnagraficaAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['idanagrafica'] = $value;
|
|
|
|
}
|
|
|
|
|
2018-08-10 17:14:09 +02:00
|
|
|
public function getGruppoAttribute()
|
|
|
|
{
|
|
|
|
if (!isset($this->gruppo)) {
|
|
|
|
$this->gruppo = $this->group->nome;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->gruppo;
|
|
|
|
}
|
|
|
|
|
2019-07-18 18:33:56 +02:00
|
|
|
public function getSediAttribute()
|
|
|
|
{
|
|
|
|
$database = database();
|
|
|
|
|
|
|
|
// Estraggo le sedi dell'utente loggato
|
|
|
|
$sedi = $database->fetchArray('SELECT idsede FROM zz_user_sedi WHERE id_user='.prepare($this->id));
|
|
|
|
|
|
|
|
// Se l'utente non ha sedi, è come se ce le avesse tutte disponibili per retrocompatibilità
|
|
|
|
if (empty($sedi)) {
|
|
|
|
$sedi = $database->fetchArray('SELECT "0" AS idsede UNION SELECT id AS idsede FROM an_sedi WHERE idanagrafica='.prepare($this->idanagrafica));
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_column($sedi, 'idsede');
|
|
|
|
}
|
|
|
|
|
2019-07-16 15:43:15 +02:00
|
|
|
public function setPasswordAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['password'] = \Auth::hashPassword($value);
|
|
|
|
}
|
|
|
|
|
2019-07-18 18:33:56 +02:00
|
|
|
public function getPhotoAttribute()
|
|
|
|
{
|
|
|
|
if (empty($this->image_file_id)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$image = Upload::find($this->image_file_id);
|
|
|
|
|
|
|
|
return ROOTDIR.'/'.$image->filepath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPhotoAttribute($value)
|
|
|
|
{
|
|
|
|
$module = \Modules::get('Utenti e permessi');
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'id_module' => $module->id,
|
|
|
|
'id_record' => $this->id,
|
|
|
|
];
|
|
|
|
|
|
|
|
// Foto precedenti
|
|
|
|
$old_photo = Upload::where($data)->get();
|
|
|
|
|
|
|
|
// Informazioni sull'immagine
|
|
|
|
$filepath = is_array($value) ? $value['tmp_name'] : $value;
|
|
|
|
$info = Upload::getInfo(is_array($value) ? $value['name'] : $value);
|
|
|
|
$file = DOCROOT.'/files/temp_photo.'.$info['extension'];
|
|
|
|
|
|
|
|
// Ridimensionamento
|
|
|
|
$driver = extension_loaded('gd') ? 'gd' : 'imagick';
|
|
|
|
ImageManagerStatic::configure(['driver' => $driver]);
|
|
|
|
|
|
|
|
$img = ImageManagerStatic::make($filepath)->resize(100, 100, function ($constraint) {
|
|
|
|
$constraint->aspectRatio();
|
|
|
|
});
|
|
|
|
$img->save(slashes($file));
|
|
|
|
|
|
|
|
// Aggiunta nuova foto
|
|
|
|
$upload = Upload::build($file, $data);
|
|
|
|
|
|
|
|
// Rimozione foto precedenti
|
|
|
|
delete($file);
|
|
|
|
if (!empty($upload)) {
|
|
|
|
foreach ($old_photo as $old) {
|
|
|
|
$old->delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->image_file_id = $upload->id;
|
|
|
|
}
|
|
|
|
|
2018-08-10 17:14:09 +02:00
|
|
|
/* Relazioni Eloquent */
|
|
|
|
|
|
|
|
public function group()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Group::class, 'idgruppo');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function logs()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Log::class, 'id_utente');
|
|
|
|
}
|
|
|
|
|
2019-07-26 11:57:59 +02:00
|
|
|
public function notes()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Note::class, 'id_utente');
|
|
|
|
}
|
|
|
|
|
2019-07-19 15:23:00 +02:00
|
|
|
public function anagrafica()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Anagrafica::class, 'idanagrafica');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function image()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Upload::class, 'image_file_id');
|
|
|
|
}
|
|
|
|
|
2018-08-10 17:14:09 +02:00
|
|
|
public function modules()
|
|
|
|
{
|
|
|
|
return $this->group->modules();
|
|
|
|
}
|
|
|
|
}
|