91 lines
3.4 KiB
PHP
91 lines
3.4 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model\Table;
|
|
|
|
use Cake\ORM\Query\SelectQuery;
|
|
use Cake\ORM\RulesChecker;
|
|
use Cake\ORM\Table;
|
|
use Cake\Validation\Validator;
|
|
|
|
/**
|
|
* Users Model
|
|
*
|
|
* @method \App\Model\Entity\User newEmptyEntity()
|
|
* @method \App\Model\Entity\User newEntity(array $data, array $options = [])
|
|
* @method array<\App\Model\Entity\User> newEntities(array $data, array $options = [])
|
|
* @method \App\Model\Entity\User get(mixed $primaryKey, array|string $finder = 'all', \Psr\SimpleCache\CacheInterface|string|null $cache = null, \Closure|string|null $cacheKey = null, mixed ...$args)
|
|
* @method \App\Model\Entity\User findOrCreate($search, ?callable $callback = null, array $options = [])
|
|
* @method \App\Model\Entity\User patchEntity(\Cake\Datasource\EntityInterface $entity, array $data, array $options = [])
|
|
* @method array<\App\Model\Entity\User> patchEntities(iterable $entities, array $data, array $options = [])
|
|
* @method \App\Model\Entity\User|false save(\Cake\Datasource\EntityInterface $entity, array $options = [])
|
|
* @method \App\Model\Entity\User saveOrFail(\Cake\Datasource\EntityInterface $entity, array $options = [])
|
|
* @method iterable<\App\Model\Entity\User>|\Cake\Datasource\ResultSetInterface<\App\Model\Entity\User>|false saveMany(iterable $entities, array $options = [])
|
|
* @method iterable<\App\Model\Entity\User>|\Cake\Datasource\ResultSetInterface<\App\Model\Entity\User> saveManyOrFail(iterable $entities, array $options = [])
|
|
* @method iterable<\App\Model\Entity\User>|\Cake\Datasource\ResultSetInterface<\App\Model\Entity\User>|false deleteMany(iterable $entities, array $options = [])
|
|
* @method iterable<\App\Model\Entity\User>|\Cake\Datasource\ResultSetInterface<\App\Model\Entity\User> deleteManyOrFail(iterable $entities, array $options = [])
|
|
*
|
|
* @mixin \Cake\ORM\Behavior\TimestampBehavior
|
|
*/
|
|
class UsersTable extends Table
|
|
{
|
|
/**
|
|
* Initialize method
|
|
*
|
|
* @param array<string, mixed> $config The configuration for the Table.
|
|
* @return void
|
|
*/
|
|
public function initialize(array $config): void
|
|
{
|
|
parent::initialize($config);
|
|
|
|
$this->setTable('users');
|
|
$this->setDisplayField('name');
|
|
$this->setPrimaryKey('id');
|
|
|
|
$this->addBehavior('Timestamp');
|
|
}
|
|
|
|
/**
|
|
* Default validation rules.
|
|
*
|
|
* @param \Cake\Validation\Validator $validator Validator instance.
|
|
* @return \Cake\Validation\Validator
|
|
*/
|
|
public function validationDefault(Validator $validator): Validator
|
|
{
|
|
$validator
|
|
->scalar('name')
|
|
->maxLength('name', 150)
|
|
->requirePresence('name', 'create')
|
|
->notEmptyString('name');
|
|
|
|
$validator
|
|
->email('email')
|
|
->requirePresence('email', 'create')
|
|
->notEmptyString('email');
|
|
|
|
$validator
|
|
->scalar('password')
|
|
->maxLength('password', 255)
|
|
->requirePresence('password', 'create')
|
|
->notEmptyString('password');
|
|
|
|
return $validator;
|
|
}
|
|
|
|
/**
|
|
* Returns a rules checker object that will be used for validating
|
|
* application integrity.
|
|
*
|
|
* @param \Cake\ORM\RulesChecker $rules The rules object to be modified.
|
|
* @return \Cake\ORM\RulesChecker
|
|
*/
|
|
public function buildRules(RulesChecker $rules): RulesChecker
|
|
{
|
|
$rules->add($rules->isUnique(['email']), ['errorField' => 'email']);
|
|
|
|
return $rules;
|
|
}
|
|
}
|