34 lines
791 B
PHP
34 lines
791 B
PHP
<?php
|
|
|
|
class Staff extends DataStore {
|
|
const TABLE = 'staff';
|
|
|
|
public static function authenticate($userEmail, $userPassword) {
|
|
$user = Staff::getUser($userEmail, 'email');
|
|
|
|
return ($user && Hashing::verifyPassword($userPassword, $user->password)) ? $user : new NullDataStore();
|
|
}
|
|
|
|
public static function getProps() {
|
|
return [
|
|
'name',
|
|
'email',
|
|
'password',
|
|
'profilePic',
|
|
'level',
|
|
'sharedDepartmentList',
|
|
'sharedTicketList'
|
|
];
|
|
}
|
|
|
|
public function getDefaultProps() {
|
|
return [
|
|
'level' => 1
|
|
];
|
|
}
|
|
|
|
public static function getUser($value, $property = 'id') {
|
|
return parent::getDataStore($value, $property);
|
|
}
|
|
}
|