-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathuser_wordpress.php
More file actions
318 lines (239 loc) · 9.32 KB
/
user_wordpress.php
File metadata and controls
318 lines (239 loc) · 9.32 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<?php
/**
* ownCloud - Cloudpress
*
* @author Bastien Ho (EELV - Urbancube)
* @copyleft 2012 bastienho@urbancube.fr
* @projeturl http://ecolosites.eelv.fr
*
* Free Software under creative commons licence
* http://creativecommons.org/licenses/by-nc/3.0/
* Attribution-NonCommercial 3.0 Unported (CC BY-NC 3.0)
*
* You are free:
* to Share — to copy, distribute and transmit the work
* to Remix — to adapt the work
*
* Under the following conditions:
* Attribution — You must attribute the work in the manner specified by the author or licensor (but not in any way that
* suggests that they endorse you or your use of the work).
* Noncommercial — You may not use this work for commercial purposes.
*
*/
class OC_user_wordpress extends OC_User_Backend {
protected $wordpress_db_host;
protected $wordpress_db_name;
protected $wordpress_db_user;
protected $wordpress_db_password;
protected $wordpress_db_prefix;
protected $wordpress_hash_salt;
protected $db;
protected $db_conn;
protected $wp_all_users;
static $params;
function __construct() {
$this->wp_instance = new OC_wordpress();
$this->wp_instance->connectdb();
$uid=OC_User::getUser();
if($uid){
$this->current_user_blogs = $this->wp_instance->getUserblogsIds($uid);
}
self::$params =$this->wp_instance->params;
}
/**
* @brief Set email address
* @param $uid The username
*/
public function connectdb() {
$this->db_conn = $this->wp_instance->connectdb();
}
private function setUserInfos($uid) {
$this->connectdb();
if (!$this->db_conn) {
return false;
}
$q = 'SELECT `user_email` FROM '. self::$params['wordpress_db_prefix'] .'users WHERE user_login = "'. str_replace('"','""',$uid) .'" AND user_status = 0';
$result = $this->wp_instance->db->query($q);
/* OC_Preferences has been removed from OC 8.1+ */
/*
if ($result && mysqli_num_rows($result)>0) {
$user_infos = mysqli_fetch_assoc($result);
OC_Preferences::setValue($uid, 'settings', 'email', $user_infos['user_email']);
}
*/
}
/* Check if the password is correct */
public function checkPassword($uid, $password){
if (!$this->db_conn) {
$this->connectdb();
}
if (!$this->db_conn) {
return false;
}
$query = 'SELECT user_login, user_pass FROM '. self::$params['wordpress_db_prefix'] .'users WHERE user_login = "' . str_replace('"','""',$uid) . '"';
$query .= ' AND user_status = 0';
$result = $this->wp_instance->db->query($query);
if ($result && mysqli_num_rows($result)>0) {
$row = mysqli_fetch_assoc($result);
$hash = $row['user_pass'];
$normalize_path = str_replace('\\', '/', OC_APP::getAppPath('user_wordpress'));
$path_array = explode ('/', $normalize_path);
array_pop ($path_array);
$app_folder = array_pop($path_array);
OC::$CLASSPATH['OC_wordpress'] = $app_folder . '/lib/wordpress.class.php';
require_once($app_folder . '/user_wordpress/class-phpass.php');
$wp_hasher = new WPPasswordHash(8, TRUE);
$check = $wp_hasher->CheckPassword($password, $hash);
if ($check===true) {
// Make sure the user is in the wordpress_global_group
if(self::$params['wordpress_global_group']!=''){
if(!OC_Group::groupExists(self::$params['wordpress_global_group'])){
OC_Group::createGroup(self::$params['wordpress_global_group']);
}
$UserblogsIds = $this->wp_instance->getUserblogsIds($uid);
if ( empty($UserblogsIds) ) {
// remove from group if current user has no access to Wordpress blog/site with the same role name.
OC_Group::removefromGroup( $uid, self::$params['wordpress_global_group'] );
}
else{
OC_Group::addToGroup( $uid, self::$params['wordpress_global_group'] );
}
}
$this->setUserInfos($uid);
return $row['user_login'];
}
}
return false;
}
public function log_with_hash($uid,$hash){
if (!$this->db_conn) {
$this->connectdb();
}
if (!$this->db_conn) {
return false;
}
$query = 'SELECT user_pass FROM '. self::$params['wordpress_db_prefix'] .'users WHERE user_login = "' . str_replace('"','""',$uid) . '"AND user_status = 0';
$result = $this->wp_instance->db->query($query);
if ($result && mysqli_num_rows($result)>0) {
$ro=mysqli_fetch_array($result);
if($hash==sha1($ro[0])){
//Some line from lib/user.php
$enabled = OC_User::isEnabled($uid);
if($uid && $enabled) {
//session_regenerate_id(true);
OC_User::setUserId($uid);
//OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>$password ));
return true;
}
}
}
return false;
}
public function getAllWpUsers(){
if (!$this->db_conn) {
$this->connectdb();
}
$users = array();
if (!$this->db_conn) {
return;
}
$CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" );
$q = 'SELECT `user_login`,`display_name` FROM '. self::$params['wordpress_db_prefix'] .'users WHERE user_status = 0 ORDER BY `user_login` ';
$result = $this->wp_instance->db->query($q);
if ($result && mysqli_num_rows($result)>0) {
$i=0;
while ($row = mysqli_fetch_assoc($result)){
if(!empty($row['user_login']) ) {
if(self::$params['wordpress_have_to_be_logged']=='0' || is_dir($CONFIG_DATADIRECTORY.'/'.$row['user_login'])){
$this->wp_all_users[] = array(
'login'=>$row['user_login'],
'display_name'=>$row['display_name']
);
}
else{
// who goe's to hunt loose his place
}
}
}
}
}
public function getPartWpUsers($search = '', $limit = NULL, $offset = NULL){
$start=0;
$fin=sizeof($this->wp_all_users);
if($fin==0){
$this->getAllWpUsers();
$fin=sizeof($this->wp_all_users);
}
//$nb_users=$fin;
if($search==''){
if($offset!=NULL) $start=$offset;
if($limit!=NULL) $fin=$start+$limit;
}
//if($fin>$nb_users) $fin=$nb_users;
return array('start'=>$start,'fin'=>$fin);
}
public function getSearchWpUser($user,$search=''){
if($search=='') return true;
if(strpos(strtolower($user['login']),strtolower($search))>-1 || strpos(strtolower($user['display_name']),strtolower($search))>-1){
if(self::$params['wordpress_restrict_group']==1){
$thisuserblogs = $this->wp_instance->getUserblogsIds($user['login']);
$this->current_user_blogs = $this->wp_instance->getUserblogsIds($uid);
$inter = array_intersect($thisuserblogs,$this->current_user_blogs);
if($inter==false || sizeof($inter)==0){
return false;
}
}
return true;
}
return false;
}
/* a list of all users from wordpress DB */
public function getUsers($search = '', $limit = NULL, $offset = NULL) {
$users=array();
$plage = $this->getPartWpUsers($search, $limit, $offset);
if($plage['fin']==0){
return $users;
}
for($i=$plage['start'] ; $i<$plage['fin'] ; $i++){
if($this->getSearchWpUser($this->wp_all_users[$i],$search) && isset($this->wp_all_users[$i]['user_login'])){
$users[] = $this->wp_all_users[$i]['user_login'];
}
}
return $users;
}
public function format_txt($str){
//setlocale(LC_ALL, "en_US.utf8");
//return iconv("utf-8", "ascii//TRANSLIT", $str);
//$str = htmlentities($str);
return str_replace( array('à','á','â','ã','ä', 'ç', 'è','é','ê','ë', 'ì','í','î','ï', 'ñ', 'ò','ó','ô','õ','ö', 'ù','ú','û','ü', 'ý','ÿ', 'À','Á','Â','Ã','Ä', 'Ç', 'È','É','Ê','Ë', 'Ì','Í','Î','Ï', 'Ñ', 'Ò','Ó','Ô','Õ','Ö', 'Ù','Ú','Û','Ü', 'Ý'), array('a','a','a','a','a', 'c', 'e','e','e','e', 'i','i','i','i', 'n', 'o','o','o','o','o', 'u','u','u','u', 'y','y', 'A','A','A','A','A', 'C', 'E','E','E','E', 'I','I','I','I', 'N', 'O','O','O','O','O', 'U','U','U','U', 'Y'), $str);
}
/* Assoc display names from WP database */
public function getDisplayNames($search = '', $limit = NULL, $offset = NULL) {
$users=array();
$plage = $this->getPartWpUsers($search, $limit, $offset);
if($plage['fin']==0){
return $users;
}
for($i=$plage['start'] ; $i<$plage['fin'] ; $i++){
if(isset($this->wp_all_users[$i]) && $this->getSearchWpUser($this->wp_all_users[$i],$search)){
$users[$this->wp_all_users[$i]['login']] = (!empty($this->wp_all_users[$i]['display_name']))?$this->format_txt($this->wp_all_users[$i]['display_name']):$this->wp_all_users[$i]['login'];
}
}
return $users;
}
/* check if a user exists */
public function userExists($uid) {
if (!$this->db_conn) {
$this->connectdb();
}
if (!$this->db_conn) {
return false;
}
$q = 'SELECT user_login FROM '. self::$params['wordpress_db_prefix'] .'users WHERE user_login = "'. str_replace('"','""',$uid) .'" AND user_status = 0';
$result = $this->wp_instance->db->query($q);
if ($result && mysqli_num_rows($result)>0) {
return true;
}
return false;
}
}