C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\xoops\html\kernel\member.php


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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<?php
// $Id: member.php,v 1.10.24.7.2.1 2005/09/20 00:43:18 skalpa Exp $
//  ------------------------------------------------------------------------ //
//                XOOPS - PHP Content Management System                      //
//                    Copyright (c) 2000 XOOPS.org                           //
//                       <http://www.xoops.org/>                             //
//  ------------------------------------------------------------------------ //
//  This program is free software; you can redistribute it and/or modify     //
//  it under the terms of the GNU General Public License as published by     //
//  the Free Software Foundation; either version 2 of the License, or        //
//  (at your option) any later version.                                      //
//                                                                           //
//  You may not change or alter any portion of this comment or credits       //
//  of supporting developers from this source code or any supporting         //
//  source code which is considered copyrighted (c) material of the          //
//  original comment or credit authors.                                      //
//                                                                           //
//  This program is distributed in the hope that it will be useful,          //
//  but WITHOUT ANY WARRANTY; without even the implied warranty of           //
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            //
//  GNU General Public License for more details.                             //
//                                                                           //
//  You should have received a copy of the GNU General Public License        //
//  along with this program; if not, write to the Free Software              //
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA //
//  ------------------------------------------------------------------------ //
// Author: Kazumi Ono (AKA onokazu)                                          //
// URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ //
// Project: The XOOPS Project                                                //
// ------------------------------------------------------------------------- //

if (!defined('XOOPS_ROOT_PATH')) {
    exit();
}
require_once 
XOOPS_ROOT_PATH.'/kernel/user.php';
require_once 
XOOPS_ROOT_PATH.'/kernel/group.php';

/**
* XOOPS member handler class.  
* This class provides simple interface (a facade class) for handling groups/users/
* membership data.
*
*
* @author  Kazumi Ono <onokazu@xoops.org>
* @copyright copyright (c) 2000-2003 XOOPS.org
* @package kernel
*/

class XoopsMemberHandler{

    
/**#@+
    * holds reference to group handler(DAO) class
    * @access private
    */
    
var $_gHandler;

    
/**
    * holds reference to user handler(DAO) class
    */
    
var $_uHandler;

    
/**
    * holds reference to membership handler(DAO) class
    */
    
var $_mHandler;

    
/**
    * holds temporary user objects
    */
    
var $_members = array();
    
/**#@-*/

    /**
     * constructor
     * 
     */
    
function XoopsMemberHandler(&$db)
    {
        
$this->_gHandler = new XoopsGroupHandler($db);
        
$this->_uHandler = new XoopsUserHandler($db);
        
$this->_mHandler = new XoopsMembershipHandler($db);
    }

    
/**
     * create a new group
     * 
     * @return object XoopsGroup reference to the new group
     */
    
function &createGroup()
    {
        
$return =& $this->_gHandler->create();
        return 
$return;
    }

    
/**
     * create a new user
     * 
     * @return object XoopsUser reference to the new user
     */
    
function &createUser()
    {
        
$return =& $this->_uHandler->create();
        return 
$return;
    }

    
/**
     * retrieve a group
     * 
     * @param int $id ID for the group
     * @return object XoopsGroup reference to the group
     */
    
function getGroup($id)
    {
        return 
$this->_gHandler->get($id);
    }

    
/**
     * retrieve a user
     * 
     * @param int $id ID for the user
     * @return object XoopsUser reference to the user
     */
    
function &getUser($id)
    {
        if (!isset(
$this->_members[$id])) {
            
$this->_members[$id] =& $this->_uHandler->get($id);
        }
        return 
$this->_members[$id];
    }

    
/**
     * delete a group
     * 
     * @param object $group reference to the group to delete
     * @return bool FALSE if failed
     */
    
function deleteGroup(&$group)
    {
        
$this->_gHandler->delete($group);
        
$this->_mHandler->deleteAll(new Criteria('groupid'$group->getVar('groupid')));
        return 
true;
    }

    
/**
     * delete a user
     * 
     * @param object $user reference to the user to delete
     * @return bool FALSE if failed
     */
    
function deleteUser(&$user)
    {
        
$this->_uHandler->delete($user);
        
$this->_mHandler->deleteAll(new Criteria('uid'$user->getVar('uid')));
        return 
true;
    }

    
/**
     * insert a group into the database
     * 
     * @param object $group reference to the group to insert
     * @return bool TRUE if already in database and unchanged
     * FALSE on failure
     */
    
function insertGroup(&$group)
    {
        return 
$this->_gHandler->insert($group);
    }

    
/**
     * insert a user into the database
     * 
     * @param object $user reference to the user to insert
     * @return bool TRUE if already in database and unchanged
     * FALSE on failure
     */
    
function insertUser(&$user$force false)
    {
        return 
$this->_uHandler->insert($user$force);
    }

    
/**
     * retrieve groups from the database
     * 
     * @param object $criteria {@link CriteriaElement}
     * @param bool $id_as_key use the group's ID as key for the array?
     * @return array array of {@link XoopsGroup} objects 
     */
    
function getGroups($criteria null$id_as_key false)
    {
        return 
$this->_gHandler->getObjects($criteria$id_as_key);
    }

    
/**
     * retrieve users from the database
     * 
     * @param object $criteria {@link CriteriaElement} 
     * @param bool $id_as_key use the group's ID as key for the array?
     * @return array array of {@link XoopsUser} objects
     */
    
function getUsers($criteria null$id_as_key false)
    {
        if (
is_null($criteria)) {
            
$criteria = new Criteria('uid'0'!=');
        }
        return 
$this->_uHandler->getObjects($criteria$id_as_key);
    }

    
/**
     * get a list of groupnames and their IDs
     * 
     * @param object $criteria {@link CriteriaElement} object
     * @return array associative array of group-IDs and names
     */
    
function getGroupList($criteria null)
    {
        return 
$this->_gHandler->getList($criteria);
    }

    
/**
     * get a list of usernames and their IDs
     * 
     * @param object $criteria {@link CriteriaElement} object
     * @return array associative array of user-IDs and names
     */
    
function getUserList($criteria null)
    {
        if (
is_null($criteria)) {
            
$criteria = new Criteria('uid'0'!=');
        }
        return 
$this->_uHandler->getList($criteria);
    }

    
/**
     * add a user to a group
     * 
     * @param int $group_id ID of the group
     * @param int $user_id ID of the user
     * @return object XoopsMembership
     */
    
function addUserToGroup($group_id$user_id)
    {
        
$mship =& $this->_mHandler->create();
        
$mship->setVar('groupid'$group_id);
        
$mship->setVar('uid'$user_id);
        return 
$this->_mHandler->insert($mship);
    }

    
/**
     * remove a list of users from a group
     * 
     * @param int $group_id ID of the group
     * @param array $user_ids array of user-IDs
     * @return bool success?
     */
    
function removeUsersFromGroup($group_id$user_ids = array())
    {
        
$criteria = new CriteriaCompo();
        
$criteria->add(new Criteria('groupid'$group_id));
        
$criteria2 = new CriteriaCompo();
        foreach (
$user_ids as $uid) {
            
$criteria2->add(new Criteria('uid'$uid), 'OR');
        }
        
$criteria->add($criteria2);
        return 
$this->_mHandler->deleteAll($criteria);
    }

    
/**
     * get a list of users belonging to a group
     * 
     * @param int $group_id ID of the group
     * @param bool $asobject return the users as objects?
     * @param int $limit number of users to return
     * @param int $start index of the first user to return
     * @return array Array of {@link XoopsUser} objects (if $asobject is TRUE)
     * or of associative arrays matching the record structure in the database.
     */
    
function getUsersByGroup($group_id$asobject false$limit 0$start 0)
    {
        
$user_ids =& $this->_mHandler->getUsersByGroup($group_id$limit$start);
        if (!
$asobject) {
           return 
$user_ids;
        } else {
           
$ret = array();
           foreach (
$user_ids as $u_id) {
               
$user =& $this->getUser($u_id);
                if (
is_object($user)) {
                    
$ret[] =& $user;
                }
                unset(
$user);
           }
           return 
$ret;
        }
    }

    
/**
     * get a list of groups that a user is member of
     * 
     * @param int $user_id ID of the user
     * @param bool $asobject return groups as {@link XoopsGroup} objects or arrays?
     * @return array array of objects or arrays
     */
    
function getGroupsByUser($user_id$asobject false)
    {
        
$group_ids =& $this->_mHandler->getGroupsByUser($user_id);
        if (!
$asobject) {
           return 
$group_ids;
        } else {
           foreach (
$group_ids as $g_id) {
               
$ret[] =& $this->getGroup($g_id);
           }
           return 
$ret;
        }
    }

    
/**
     * log in a user
     * 
     * @param string $uname username as entered in the login form
     * @param string $pwd password entered in the login form
     * @return object XoopsUser reference to the logged in user. FALSE if failed to log in 
     */
    
function &loginUser($uname$pwd)
    {
        
$return =& $this->_uHandler->loginUser($uname$pwd);
        return 
$return;
    }

    
/**
     * logs in a user with an nd5 encrypted password
     * 
     * @param string $uname username
     * @param string $md5pwd password encrypted with md5
     * @return object XoopsUser reference to the logged in user. FALSE if failed to log in 
     */
    
function &loginUserMd5($uname$md5pwd)
    {
        
$return =& $this->_uHandler->loginUser($uname$md5pwdtrue);
        return 
$return;
    }

    
/**
     * count users matching certain conditions
     * 
     * @param object $criteria {@link CriteriaElement} object
     * @return int
     */
    
function getUserCount($criteria null)
    {
        return 
$this->_uHandler->getCount($criteria);
    }

    
/**
     * count users belonging to a group
     * 
     * @param int $group_id ID of the group
     * @return int
     */
    
function getUserCountByGroup($group_id)
    {
        return 
$this->_mHandler->getCount(new Criteria('groupid'$group_id));
    }

    
/**
     * updates a single field in a users record
     * 
     * @param object $user reference to the {@link XoopsUser} object
     * @param string $fieldName name of the field to update
     * @param string $fieldValue updated value for the field
     * @return bool TRUE if success or unchanged, FALSE on failure
     */
    
function updateUserByField(&$user$fieldName$fieldValue)
    {
        return 
$this->_uHandler->updateUserByField($fieldName$fieldValue$user->getVar('uid'));
    }

    
/**
     * updates a single field in a users record
     * 
     * @param string $fieldName name of the field to update
     * @param string $fieldValue updated value for the field
     * @param object $criteria {@link CriteriaElement} object
     * @return bool TRUE if success or unchanged, FALSE on failure
     */
    
function updateUsersByField($fieldName$fieldValue$criteria null)
    {
        return 
$this->_uHandler->updateAll($fieldName$fieldValue$criteria);
    }

    
/**
     * activate a user
     * 
     * @param object $user reference to the {@link XoopsUser} object
     * @return bool successful?
     */
    
function activateUser(&$user)
    {
        if (
$user->getVar('level') == 1) {
            return 
true;
        }
        
$user->setVar('level'1);
        return 
$this->_uHandler->insert($usertrue);
    }

}
?>