mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 08:00:02 -06:00
6b63ab1c32
What it means? Well, first I removed some development control variables from ipa.js. Namely useSampleData and sizelimit. I moved useSampleData to the top of index.xhtml. This way we won't forget about it when we don't need it anymore. sizelimit has nothing to do in ipa.js and be hardcoded for ALL commands! Some don't have this parameter and could fail. Since ipa_init now loads meta-data over JSON-RPC, we need to wait for it to finish its job. That's why I put a second parameter to ipa_init: on_win. ipa_init will call on_win when all data is loaded properly and we can start building the page.
130 lines
3.2 KiB
JavaScript
130 lines
3.2 KiB
JavaScript
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
*
|
|
* Copyright (C) 2010 Red Hat
|
|
* see file 'COPYING' for use and warranty information
|
|
*
|
|
* 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; version 2 only
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
/* IPA JSON-RPC helper */
|
|
|
|
/* JSON-RPC ID counter */
|
|
var ipa_jsonrpc_id = 0;
|
|
|
|
/* IPA objects data in JSON format */
|
|
var ipa_objs = {};
|
|
|
|
var _ipa_init_on_win_callback = null;
|
|
/* initialize the IPA JSON-RPC helper
|
|
* arguments:
|
|
* url - JSON-RPC URL to use (optional) */
|
|
function ipa_init(url, on_win)
|
|
{
|
|
if (!url)
|
|
url = '/ipa/json';
|
|
|
|
_ipa_init_on_win_callback = on_win;
|
|
|
|
var options = {
|
|
url: url,
|
|
type: 'POST',
|
|
contentType: 'application/json',
|
|
dataType: 'json',
|
|
processData: false,
|
|
};
|
|
|
|
$.ajaxSetup(options);
|
|
|
|
ipa_cmd('json_metadata', [], {}, _ipa_load_objs);
|
|
}
|
|
|
|
function _ipa_load_objs(data, textStatus, xhr)
|
|
{
|
|
ipa_objs = data.result.result;
|
|
if (_ipa_init_on_win_callback)
|
|
_ipa_init_on_win_callback(data, textStatus, xhr);
|
|
}
|
|
|
|
/* call an IPA command over JSON-RPC
|
|
* arguments:
|
|
* name - name of the command or method if objname is set
|
|
* args - list of positional arguments, e.g. [username]
|
|
* options - dict of options, e.g. {givenname: 'Pavel'}
|
|
* win_callback - function to call if the JSON request succeeds
|
|
* fail_callback - function to call if the JSON request fails
|
|
* objname - name of an IPA object (optional) */
|
|
function ipa_cmd(name, args, options, win_callback, fail_callback, objname)
|
|
{
|
|
id = ipa_jsonrpc_id++;
|
|
if (objname)
|
|
name = objname + '_' + name;
|
|
|
|
var data = {
|
|
method: name,
|
|
params: [args, options],
|
|
id: id,
|
|
};
|
|
|
|
var request = {
|
|
data: JSON.stringify(data),
|
|
success: win_callback,
|
|
error: fail_callback,
|
|
};
|
|
|
|
$.ajax(request);
|
|
|
|
return (id);
|
|
}
|
|
|
|
/* parse query string into key:value dict
|
|
* arguments:
|
|
* qs - query string (optional) */
|
|
function ipa_parse_qs(qs)
|
|
{
|
|
var dict = {};
|
|
|
|
if (!qs)
|
|
qs = location.search.substring(1, location.search.length);
|
|
qs = qs.replace(/\+/g, ' ');
|
|
|
|
var args = qs.split('&');
|
|
for (var i = 0; i < args.length; ++i) {
|
|
var parts = args[i].split('=', 2);
|
|
var key = decodeURIComponent(parts[0]);
|
|
if (parts.length == 2)
|
|
dict[key] = decodeURIComponent(parts[1]);
|
|
else
|
|
dict[key] = key;
|
|
}
|
|
|
|
return (dict);
|
|
}
|
|
|
|
/* helper function used to retrieve information about an attribute */
|
|
function ipa_get_param_info(attr)
|
|
{
|
|
var takes_params = ipa_objs[_ipa_obj_name]['takes_params'];
|
|
if (!takes_params)
|
|
return (null);
|
|
|
|
for (var i = 0; i < takes_params.length; ++i) {
|
|
if (takes_params[i]['name'] == attr)
|
|
return (takes_params[i]);
|
|
}
|
|
|
|
return (null);
|
|
}
|
|
|