users.php
5.58 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?php
class Flora_Api_Service_Users extends Flora_Api_Service
{
const API_REGISTRATION = 'users/registration';
const API_SUBSCRIBE = 'users/subscribe';
const API_LOGIN = 'users/login';
const API_CHECKPASSWORD = 'users/checkpassword';
const API_RESETPASSWORD = 'users/resetpassword';
const API_NOTDELETE = 'users/notdelete';
const API_LOGGED = 'users/logged';
const API_LOGOUT = 'users/logout';
const API_EXISTS = 'users/exists';
const API_INFO = 'users/info';
const API_UPDATE = 'users/update';
const API_ADDRESS_LIST = 'users/address/list';
const API_ADDRESS_PROCESS = 'users/address/process';
const API_ADDRESS_DELETE = 'users/address/delete';
const API_SOCIAL_SIGNIN = 'users/social/signin';
const API_SOCIAL_LOGIN = 'users/social/login';
const API_SOCIAL_LIST = 'users/social/list';
const API_SOCIAL_RELATED = 'users/social/related';
/**
* @param $email
* @param $name
* @return bool
*/
public function registration($email, $name = '')
{
return $this->call(self::API_REGISTRATION, array(
'email' => $email,
'name' => $name,
));
}
/**
* @param $email
* @return bool
*/
public function subscribe($email)
{
return $this->call(self::API_SUBSCRIBE, array('email' => $email));
}
/**
* @param $email
* @param $password
* @param bool $remember
* @param bool $checkip
* @return Flora_Model_User
*/
public function login($email, $password, $remember = false, $checkip = true)
{
return $this->call(self::API_LOGIN, array(
'email' => $email,
'password' => $password,
'remember' => $remember ? 1 : 0,
'checkip' => $checkip ? 1 : 0
));
}
/**
* @param $email
* @param $password
* @return bool
*/
public function checkPassword($email, $password)
{
return $this->call(self::API_CHECKPASSWORD, array(
'email' => $email,
'password' => $password,
));
}
/**
* @param $email
* @return Flora_Model_User
*/
public function resetPassword($email)
{
return $this->call(self::API_RESETPASSWORD, array(
'email' => $email
));
}
/**
* @param $email
* @return Flora_Model_User
*/
public function notDelete($id)
{
return $this->call(self::API_NOTDELETE, array(
'id' => $id
));
}
/**
* @param int $info
* @return Flora_Api_Response|Flora_Model|Flora_Model[]|mixed
*/
public function getLoggedUser($info = 0)
{
return $this->call(self::API_LOGGED, array(
'info' => $info
));
}
/**
* @return bool
*/
public function logout()
{
return $this->call(self::API_LOGOUT);
}
/**
* @param $email
* @return bool
*/
public function exists($email)
{
return $this->call(self::API_EXISTS, array('email' => $email));
}
/**
* @param $email
* @return bool|mixed
*/
public function info($email)
{
return $this->call(self::API_INFO, array('email' => $email));
}
/**
* @param string $password
* @param string $name
* @param string $phone
* @param string $country
* @param string $city
* @param int $birthday
* @param string $flowers
* @param int $feed_news
* @param string $gender
* @return Flora_Model_User
*/
public function updateInfo($password = '', $name = '', $phone = '', $country = '', $city = '', $birthday = 0,
$flowers = '', $feed_news = 1, $gender = 'n')
{
return $this->call(self::API_UPDATE, array(
'password' => $password,
'name' => $name,
'phone' => $phone,
'country' => $country,
'city' => $city,
'birthday' => (int)$birthday,
'flowers' => $flowers,
'feed_news' => $feed_news,
'gender' => $gender,
));
}
/**
* @return Flora_Collection|Flora_Model_User_Address[]
*/
public function addressList()
{
return $this->call(self::API_ADDRESS_LIST);
}
/**
* @param Flora_Validation_User_Address $record
* @return Flora_Model_User_Address
*/
public function addressProcess(Flora_Validation_User_Address $record)
{
return $this->call(self::API_ADDRESS_PROCESS, array(), $record);
}
/**
* @param $id
* @return int
*/
public function addressDelete($id)
{
return $this->call(self::API_ADDRESS_DELETE, array('id' => $id));
}
/**
* @param $service
* @param $redirect_success
* @param $redirect_fail
* @return string
*/
public function socialSignin($service, $redirect_success, $redirect_fail)
{
return $this->call(self::API_SOCIAL_SIGNIN, array(
'service' => $service,
'redirect_success' => $redirect_success,
'redirect_fail' => $redirect_fail,
));
}
/**
* @param $token
* @return Flora_Model_User
*/
public function socialLogin($token)
{
return $this->call(self::API_SOCIAL_LOGIN, array(
'token' => $token
));
}
/**
* @return stdClass
*/
public function socialList()
{
return $this->call(self::API_SOCIAL_LIST);
}
/**
* @return stdClass
*/
public function socialRelated()
{
return $this->call(self::API_SOCIAL_RELATED);
}
}