avatar();
$pic = null;
if ($info) {
$pic = $this->checkArray('avatar', $info);
}
if (!$pic && $value) {
$pic = '';
$file = asset('uploads/profilepic/'.$value);
if ($file) {
$type = pathinfo($file, PATHINFO_EXTENSION);
$data = file_get_contents($file);
$pic = 'data:image/'.$type.';base64,'.base64_encode($data);
}
}
if (!$value) {
$pic = \Gravatar::src($this->attributes['email']);
}
return $pic;
}
public function avatar()
{
$related = 'App\UserAdditionalInfo';
$foreignKey = 'owner';
return $this->hasMany($related, $foreignKey)->select('value')->where('key', 'avatar')->first();
}
public function getOrganizationRelation()
{
$related = "App\Model\helpdesk\Agent_panel\User_org";
$user_relation = $this->hasMany($related, 'user_id');
$relation = $user_relation->first();
if ($relation) {
$org_id = $relation->org_id;
$orgs = new \App\Model\helpdesk\Agent_panel\Organization();
$org = $orgs->where('id', $org_id);
return $org;
}
}
public function getOrganization()
{
$name = '';
if ($this->getOrganizationRelation()) {
$org = $this->getOrganizationRelation()->first();
if ($org) {
$name = $org->name;
}
}
return $name;
}
public function getOrgWithLink()
{
$name = '';
$org = $this->getOrganization();
if ($org !== '') {
$orgs = $this->getOrganizationRelation()->first();
if ($orgs) {
$id = $orgs->id;
$name = ''.ucfirst($org).'';
}
}
return $name;
}
public function getEmailAttribute($value)
{
if (!$value) {
$value = \Lang::get('lang.not-available');
}
return $value;
}
public function getExtraInfo($id = '')
{
if ($id === '') {
$id = $this->attributes['id'];
}
$info = new UserAdditionalInfo();
$infos = $info->where('owner', $id)->pluck('value', 'key')->toArray();
return $infos;
}
public function checkArray($key, $array)
{
$value = '';
if (is_array($array)) {
if (array_key_exists($key, $array)) {
$value = $array[$key];
}
}
return $value;
}
public function twitterLink()
{
$html = '';
$info = $this->getExtraInfo();
$username = $this->checkArray('username', $info);
if ($username !== '') {
$html = " Twitter";
}
return $html;
}
public function name()
{
$first_name = $this->first_name;
$last_name = $this->last_name;
$name = $this->user_name;
if ($first_name !== '' && $first_name !== null) {
if ($last_name !== '' && $last_name !== null) {
$name = $first_name.' '.$last_name;
} else {
$name = $first_name;
}
}
return $name;
}
public function getFullNameAttribute()
{
return $this->name();
}
/**
* Get the identifier that will be stored in the subject claim of the JWT.
*
* @return mixed
*/
public function getJWTIdentifier()
{
return $this->getKey();
}
/**
* Return a key value array, containing any custom claims to be added to the JWT.
*
* @return array
*/
public function getJWTCustomClaims()
{
return [];
}
}