forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocialAccountsTable.php
More file actions
133 lines (111 loc) · 3.23 KB
/
Copy pathSocialAccountsTable.php
File metadata and controls
133 lines (111 loc) · 3.23 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
<?php
/**
* Copyright 2010 - 2017, Cake Development Corporation (https://www.cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2010 - 2017, 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\Core\Configure;
use Cake\ORM\Query;
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;
/**
* SocialAccounts Model
*/
class SocialAccountsTable extends Table
{
/**
* Constants
*/
const PROVIDER_TWITTER = 'Twitter';
const PROVIDER_FACEBOOK = 'Facebook';
const PROVIDER_INSTAGRAM = 'Instagram';
const PROVIDER_LINKEDIN = 'LinkedIn';
/**
* Initialize method
*
* @param array $config The configuration for the Table.
* @return void
*/
public function initialize(array $config)
{
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 Validator $validator Validator instance.
* @return Validator
*/
public function validationDefault(Validator $validator)
{
$validator
->add('id', 'valid', ['rule' => 'uuid'])
->allowEmpty('id', 'create');
$validator
->requirePresence('provider', 'create')
->notEmpty('provider');
$validator
->allowEmpty('username');
$validator
->requirePresence('reference', 'create')
->notEmpty('reference');
$validator
->requirePresence('link', 'create')
->notEmpty('reference');
$validator
->allowEmpty('avatar');
$validator
->allowEmpty('description');
$validator
->requirePresence('token', 'create')
->notEmpty('token');
$validator
->allowEmpty('token_secret');
$validator
->add('token_expires', 'valid', ['rule' => 'datetime'])
->allowEmpty('token_expires');
$validator
->add('active', 'valid', ['rule' => 'boolean'])
->requirePresence('active', 'create')
->notEmpty('active');
$validator
->requirePresence('data', 'create')
->notEmpty('data');
return $validator;
}
/**
* Returns a rules checker object that will be used for validating
* application integrity.
*
* @param RulesChecker $rules The rules object to be modified.
* @return RulesChecker
*/
public function buildRules(RulesChecker $rules)
{
$rules->add($rules->existsIn(['user_id'], 'Users'));
return $rules;
}
/**
* Finder for active social accounts
*
* @param Query $query query
* @return \Cake\ORM\Query
*/
public function findActive(Query $query)
{
return $query->where([
$this->aliasField('active') => true
]);
}
}