users.php
3.43 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
<?php
class Flora_Api_Service_Users extends Flora_Api_Service
{
const API_LOGIN = "users/login";
const API_CHECKPASSWORD = "users/checkpassword";
const API_RESETPASSWORD = "users/resetpassword";
const API_LOGGED = "users/logged";
const API_LOGOUT = "users/logout";
const API_EXISTS = "users/exists";
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_REGISTRATION = 'users/registration';
/**
* @param $email
* @return Flora_Model_User
*/
public function registration($email)
{
return $this->call(self::API_REGISTRATION, 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
));
}
/**
* @return Flora_Model_User|bool
*/
public function getLoggedUser()
{
return $this->call(self::API_LOGGED);
}
/**
* @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 string $password
* @param string $name
* @param string $phone
* @param string $country
* @param string $city
* @param int $birthday
* @param string $flowers
* @return Flora_Model_User
*/
public function updateInfo($password = '', $name = "", $phone = "", $country = "", $city = "", $birthday = 0, $flowers = '')
{
return $this->call(self::API_UPDATE, array(
"password" => $password,
"name" => $name,
"phone" => $phone,
"country" => $country,
"city" => $city,
"birthday" => (int)$birthday,
'flowers' => $flowers
));
}
/**
* @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));
}
}