-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathSocialAccountsTable.php
More file actions
135 lines (113 loc) · 3.48 KB
/
Copy pathSocialAccountsTable.php
File metadata and controls
135 lines (113 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
declare(strict_types=1);
/**
* Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace CakeDC\Users\Model\Table;
use Cake\ORM\Query;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;
/**
* SocialAccounts Model
*
* @mixin \CakeDC\Users\Model\Behavior\SocialAccountBehavior
*/
class SocialAccountsTable extends Table
{
/**
* Constants
*/
public const PROVIDER_TWITTER = 'Twitter';
public const PROVIDER_FACEBOOK = 'Facebook';
public const PROVIDER_INSTAGRAM = 'Instagram';
public const PROVIDER_LINKEDIN = 'LinkedIn';
/**
* Initialize method
*
* @param array $config The configuration for the Table.
* @return void
*/
public function initialize(array $config): void
{
parent::initialize($config);
$this->setTable('social_accounts');
$this->setDisplayField('id');
$this->setPrimaryKey('id');
$this->addBehavior('Timestamp');
$this->addBehavior('CakeDC/Users.SocialAccount');
}
/**
* Default validation rules.
*
* @param \Cake\Validation\Validator $validator Validator instance.
* @return \Cake\Validation\Validator
*/
public function validationDefault(Validator $validator): Validator
{
$validator
->add('id', 'valid', ['rule' => 'uuid'])
->allowEmptyString('id', null, 'create');
$validator
->requirePresence('provider', 'create')
->notEmptyString('provider');
$validator
->allowEmptyString('username');
$validator
->requirePresence('reference', 'create')
->notEmptyString('reference');
$validator
->requirePresence('link', 'create')
->notEmptyString('reference');
$validator
->allowEmptyString('avatar');
$validator
->allowEmptyString('description');
$validator
->requirePresence('token', 'create')
->notEmptyString('token');
$validator
->allowEmptyString('token_secret');
$validator
->add('token_expires', 'valid', ['rule' => 'datetime'])
->allowEmptyString('token_expires');
$validator
->add('active', 'valid', ['rule' => 'boolean'])
->requirePresence('active', 'create')
->notBlank('active');
$validator
->requirePresence('data', 'create')
->notBlank('data');
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->existsIn(['user_id'], 'Users'));
return $rules;
}
/**
* Finder for active social accounts
*
* @param \Cake\ORM\Query $query query
* @return \Cake\ORM\Query
*/
public function findActive(Query $query)
{
return $query->where([
$this->aliasField('active') => true,
]);
}
}