2020-06-29 00:30:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Zoomyboy\LaravelNami;
|
|
|
|
|
|
|
|
use \ArrayAccess;
|
|
|
|
use Illuminate\Support\Arr;
|
|
|
|
use Illuminate\Database\Eloquent\Concerns\HasAttributes;
|
|
|
|
use Illuminate\Database\Eloquent\Concerns\HidesAttributes;
|
|
|
|
use Illuminate\Contracts\Support\Arrayable;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Member extends Model {
|
|
|
|
|
|
|
|
use HasAttributes;
|
|
|
|
use HidesAttributes;
|
|
|
|
|
|
|
|
protected static $overviewAttributes = [
|
|
|
|
'vorname' => 'firstname',
|
|
|
|
'nachname' => 'lastname',
|
|
|
|
'spitzname' => 'nickname',
|
|
|
|
'staatsangehoerigkeitText' => 'other_country',
|
|
|
|
'strasse' => 'address',
|
|
|
|
'nameZusatz' => 'further_address',
|
|
|
|
'plz' => 'zip',
|
|
|
|
'ort' => 'location',
|
|
|
|
'id' => 'id',
|
|
|
|
'telefon1' => 'main_phone',
|
|
|
|
'telefon2' => 'mobile_phone',
|
|
|
|
'telefon3' => 'work_phone',
|
|
|
|
'telefax' => 'fax',
|
|
|
|
'email' => 'email',
|
2020-06-29 23:29:54 +02:00
|
|
|
'geschlechtId' => 'gender_id',
|
2020-06-29 00:30:57 +02:00
|
|
|
'emailVertretungsberechtigter' => 'email_parents'
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $guarded = [];
|
|
|
|
|
|
|
|
public static function fromNami($item) {
|
|
|
|
$item = collect($item)
|
|
|
|
->only(array_keys(static::$overviewAttributes))
|
|
|
|
->mapWithKeys(function($item, $key) {
|
|
|
|
return [ data_get(static::$overviewAttributes, $key, $key) => $item ];
|
|
|
|
})
|
|
|
|
->toArray();
|
|
|
|
|
|
|
|
return (new self($item));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __construct($member) {
|
|
|
|
parent::__construct($member);
|
|
|
|
}
|
|
|
|
|
2020-06-29 23:29:54 +02:00
|
|
|
public function getGenderIdAttribute() {
|
|
|
|
return $this->attributes['gender_id'] == Gender::getNullValue() ? null : $this->attributes['gender_id'];
|
|
|
|
}
|
|
|
|
|
2020-06-29 00:30:57 +02:00
|
|
|
}
|