forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
webservice MDL-17135 add user selector for service to the administration
- Loading branch information
jerome
committed
Oct 14, 2009
1 parent
1c4eef5
commit 772db63
Showing
3 changed files
with
233 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
<?php | ||
// This file is part of Moodle - http://moodle.org/ | ||
// | ||
// Moodle 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 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* Web services admin library | ||
* | ||
* @package webservice | ||
* @copyright 2009 Moodle Pty Ltd (http://moodle.com) | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
require_once($CFG->dirroot . '/user/selector/lib.php'); | ||
|
||
class service_allowed_user_selector extends user_selector_base { | ||
const MAX_USERS_PER_PAGE = 100; | ||
|
||
protected $serviceid; | ||
|
||
public function __construct($name, $options) { | ||
parent::__construct($name, $options); | ||
if (!empty($options['serviceid'])) { | ||
$this->serviceid = $options['serviceid']; | ||
} else { | ||
throw new moodle_exception('serviceidnotfound'); | ||
} | ||
} | ||
|
||
public function find_users($search) { | ||
global $DB; | ||
|
||
list($wherecondition, $params) = $this->search_sql($search, 'u'); //by default wherecondition retrieves | ||
//all users except the deleted, not confirmed and guest | ||
$params[] = $this->serviceid; | ||
|
||
///the following SQL retrieve all users that are allowed to the serviceid | ||
$fields = 'SELECT ' . $this->required_fields_sql('u'); | ||
$countfields = 'SELECT COUNT(1)'; | ||
|
||
$sql = " FROM {user} u, {external_services_users} esu | ||
WHERE $wherecondition | ||
AND esu.userid = u.id | ||
AND esu.externalserviceid = ?"; | ||
|
||
$order = ' ORDER BY u.lastname ASC, u.firstname ASC'; | ||
|
||
if (!$this->is_validating()) { | ||
$potentialmemberscount = $DB->count_records_sql($countfields . $sql, $params); | ||
if ($potentialmemberscount > service_allowed_user_selector::MAX_USERS_PER_PAGE) { | ||
return $this->too_many_results($search, $potentialmemberscount); | ||
} | ||
} | ||
|
||
$availableusers = $DB->get_records_sql($fields . $sql . $order, $params); | ||
|
||
if (empty($availableusers)) { | ||
return array(); | ||
} | ||
|
||
if ($search) { | ||
$groupname = get_string('serviceusersmatching', 'webservice', $search); | ||
} else { | ||
$groupname = get_string('serviceusers', 'webservice'); | ||
} | ||
|
||
return array($groupname => $availableusers); | ||
} | ||
|
||
protected function get_options() { | ||
global $CFG; | ||
$options = parent::get_options(); | ||
$options['file'] = '/admin/webservice/lib.php'; //need to be set, otherwise the /user/selector/search.php | ||
//will fail to find this user_selector class | ||
$options['serviceid'] = $this->serviceid; | ||
return $options; | ||
} | ||
} | ||
|
||
class service_potential_user_selector extends user_selector_base { | ||
const MAX_USERS_PER_PAGE = 100; | ||
|
||
protected $serviceid; | ||
|
||
public function __construct($name, $options) { | ||
parent::__construct($name, $options); | ||
if (!empty($options['serviceid'])) { | ||
$this->serviceid = $options['serviceid']; | ||
} | ||
else { | ||
throw new moodle_exception('serviceidnotfound'); | ||
} | ||
} | ||
|
||
public function find_users($search) { | ||
global $DB; | ||
|
||
list($wherecondition, $params) = $this->search_sql($search, 'u'); //by default wherecondition retrieves | ||
//all users except the deleted, not confirmed and guest | ||
$params[] = $this->serviceid; | ||
///the following SQL retrieve all users that are not allowed to the serviceid | ||
$fields = 'SELECT ' . $this->required_fields_sql('u'); | ||
$countfields = 'SELECT COUNT(1)'; | ||
|
||
$sql = " FROM {user} u WHERE $wherecondition | ||
AND NOT EXISTS (SELECT esu.userid FROM {external_services_users} esu | ||
WHERE esu.externalserviceid = ? | ||
AND esu.userid = u.id)"; | ||
$order = ' ORDER BY lastname ASC, firstname ASC'; | ||
|
||
if (!$this->is_validating()) { | ||
$potentialmemberscount = $DB->count_records_sql($countfields . $sql, $params); | ||
if ($potentialmemberscount > service_potential_user_selector::MAX_USERS_PER_PAGE) { | ||
return $this->too_many_results($search, $potentialmemberscount); | ||
} | ||
} | ||
|
||
$availableusers = $DB->get_records_sql($fields . $sql . $order, $params); | ||
|
||
if (empty($availableusers)) { | ||
return array(); | ||
} | ||
|
||
if ($search) { | ||
$groupname = get_string('potusersmatching', 'webservice', $search); | ||
} else { | ||
$groupname = get_string('potusers', 'webservice'); | ||
} | ||
|
||
return array($groupname => $availableusers); | ||
} | ||
|
||
protected function get_options() { | ||
global $CFG; | ||
$options = parent::get_options(); | ||
$options['file'] = '/admin/webservice/lib.php'; //need to be set, otherwise the /user/selector/search.php | ||
//will fail to find this user_selector class | ||
$options['serviceid'] = $this->serviceid; | ||
return $options; | ||
} | ||
} | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters