Modul:SmwUtil: Unterschied zwischen den Versionen

CamNet - das Wiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(25 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
local p = {}
local p = {}
local classDebug = require('Module:Debug/class')
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local classDebug = require('Module:Debug/class')
local smw = mw.smw
local _TT = require('Module:TableTools')
local _TT = require('Module:TableTools')


local cfg = {
local cfg = {
fieldSeparator = '###~~~@@@~~~###',
nameMainLabel = 'PageName',
helperTemplate = 'SmwUtilQueryParserHelper',
nameMainLabel = 'MainLabel',
resultSeparator = '#####~~~****~~~#####',
userParamAsEndMarker = '######~~~!!~~~######', -- the query somehow sends more information than needed. as to not confuse the user and dump overhaed, we define a userparam that functions as end marker
valueSeparator = '##~~,,,,~~##', -- this is used in multivalue properties
}
}
local buildQueryFrom = function(stash)
local query = {}
if type(stash) == 'table' then
for k, v in pairs(stash) do
if type(v) == 'table' then
for _, vv in pairs(v) do
local val = vv
if type(vv) == 'boolean' then
val = vv and 'wahr' or 'falsch'
end
if type(k) == 'number' then
table.insert(query, val)
elseif type(val) == 'table' then
error( 'While building set-query, detected invalid table value for key ' .. k .. ': ' .. _TT.printTable(val) )
else
table.insert(query, k .. '=' .. val)
end
end
else
local val = v
if type(v) == 'boolean' then
val = v and 'wahr' or 'falsch'
end
if type(k) == 'number' then
table.insert(query, val)
else
table.insert(query, k .. '=' .. val)
end
end
end
else
query[1] = stash
end
return query
end
local extractFieldFrom = function(s)
local ret = '?' .. s:match('^%??([^#=]+).*$')
local headline = s:find('=', 1, true) and
s:match('^.*=([^=]*)$') or nil
local formatter = s:find('#', 1, true) and
s:match('^.*#([^=]*).*$') or nil
-- this causes problems with date formatter; in fact, it prevents dates from being formated
--if formatter and not formatter:find('-', 1, true) then
-- formatter = formatter .. '-'
--end
return ret .. ( formatter and ('#' .. formatter) or '' ) .. ( headline and ( '=' .. headline ) or '' )
end


function p.ask(query, attributes, retainBlanks)
function p.ask(query, attributes, retainBlanks)
classDebug:log(21, 'entering SmwUtil.ask', 'SmwUtil.ask')
classDebug:log(21, 'entering SmwUtil.ask', 'SmwUtil.ask')
classDebug:log(23, ' with query: ' .. (query and _TT.printTable(query) or 'NONE'), 'SmwUtil.ask')
classDebug:log(23, ' with query: ' .. (query and mw.text.nowiki(_TT.printTable(query)) or 'NONE'), 'SmwUtil.ask')
classDebug:log(23, ' with attributes: ' .. (attributes and _TT.printTable(attributes) or 'NONE'), 'SmwUtil.ask')
classDebug:log(23, ' with attributes: ' .. (attributes and mw.text.nowiki(_TT.printTable(attributes)) or 'NONE'), 'SmwUtil.ask')
local frame = mw.getCurrentFrame()
local where = query.select and query.select or (query.where and query.where or nil)
local select = query.select and query.select or (query.where and query.where or nil)
local fields = query.fields
local fields = query.fields
local attributes = attributes
local attributes = attributes or {}
if not select or _TT.size(select) == 0 then
if not where or (type(where) == 'table' and _TT.size(where) == 0) or (type(where) == 'string' and #where == 0) then
error('SmwUtil.ask: Argument query.select is missing or empty!', 2)
error('SmwUtil.ask: Argument query.select is missing or empty!', 2)
end
end
Zeile 29: Zeile 73:
error('SmwUtil.ask: Argument attributes has wrong parameter type (' .. type(attributes) .. '); must be table or string', 2)
error('SmwUtil.ask: Argument attributes has wrong parameter type (' .. type(attributes) .. '); must be table or string', 2)
end
end
attributes.default = ''
if not attributes.limit then
attributes.intro = nil
attributes.limit = 1000
attributes.format = 'template'
attributes.headers = 'hide'
attributes.limit = 1000
attributes.link = 'none'
attributes['more results text'] = ''
attributes.outro = nil
attributes.sep = cfg.valueSeparator
attributes.template = cfg.helperTemplate
attributes.userparam = cfg.userParamAsEndMarker
if not attributes.mainlabel or attributes.mainlabel == '-' then
attributes.mainlabel = cfg.nameMainLabel
end
end
-- now try to ascertain the headlines
local nameMainlabel = (attributes.mainlabel and attributes.mainlabel ~= '-') and attributes.mainlabel or cfg.nameMainLabel
local tmpfields = {attributes.mainlabel}
attributes.mainlabel = '-'
local headlines = {}
-- now build the query
local query = {}
if type(where) == 'string' then
table.insert(query, where)
else
for k, v in pairs(where) do
if type(k) == 'number' then
table.insert(query, v)
else
table.insert(query, '[[' .. k .. '::' .. v .. ']]')
end
end
end
table.insert(query, '?#-=' .. nameMainlabel)
if type(fields) == 'string' then
if type(fields) == 'string' then
tmpfields[2] = fields:match('^%??(.+)$')
table.insert(query, extractFieldFrom(fields))
elseif type(fields) == 'table' then
elseif type(fields) == 'table' then
for k, v in pairs(fields) do
for _, v in pairs(fields) do
tmpfields[k + 1] = v:match('^%??(.+)$')
table.insert(query, extractFieldFrom(v))
end
end
end
end
for num, hl in pairs(tmpfields) do
for k, v in pairs(attributes) do
if hl:find('=', 1, true) then
if type(k) == 'number' then
hl = hl:match('^.+=([^=]*)$')
table.insert(query, v)
elseif hl:find('#', 1, true) then
else
hl = hl:match('^([^#]*)#.*$')
table.insert(query, k .. '=' .. v)
end
headlines[num] = hl
end
local ret = nil
local result = mw.text.trim(p.rawask(query, attributes))
if result and mw.ustring.len(result) > 0 then
classDebug:log(24, ' result is: ' .. result, 'SmwUtil.ask')
ret = {}
for row in mw.text.gsplit(result, cfg.resultSeparator, true) do
if mw.ustring.len(row) > 0 then
local sequence = {}
local array = {}
local num = 1
for v in mw.text.gsplit(row, cfg.fieldSeparator, true) do
if mw.text.decode(mw.text.decode(v)) == cfg.userParamAsEndMarker then
break
end
if mw.ustring.match(v, '^[0-9]+$') then
v = tonumber(v)
elseif v:find(cfg.valueSeparator, 1, true) then
-- we have a multivalue field
local tmp = {}
for vv in mw.text.gsplit(v, cfg.valueSeparator, true) do
-- we have to decode twice. first for the encoding happening through format=template encapsulation and second because of queryParserHelper's nowiki
vv = mw.text.decode(mw.text.decode(vv))
vv = trim(mw.ustring.gsub(vv, '%[%[SMW::o[nf]f?%]%]', '')) -- smw sometimes throws around its magic tags SMW::[on|off]. we have to remove that
if not vv or #vv == 0 then
vv = nil
end
table.insert(tmp, vv)
end
v = tmp
else
-- we have to decode twice. first for the encoding happening through format=template encapsulation and second because of queryParserHelper's nowiki
v = mw.text.decode(mw.text.decode(v))
v = mw.ustring.gsub(v, '%[%[SMW::o[nf]f?%]%]', '') -- smw sometimes throws around its magic tags SMW::[on|off]. we have to remove that
if not v or #v == 0 then
v = nil
end
end
table.insert(sequence, v)
if headlines[num] then
array[headlines[num]] = v
else
array[num] = v
end
num = num + 1
end
-- for k, v in pairs(sequence) do
-- array[k] = v
-- end
if not array[1] then
array[1] = sequence[1]
end
if  _TT.size(array) > 0 then
if not retainBlanks then
-- now delete all entries with an empty value
for k, v in pairs(array) do
if mw.ustring.len(tostring(v)) == 0 then
array[k] = nil
end
end
end
table.insert(ret, array)
end
end
end
end
end
end
return ret
local result = smw.ask(query)
end
if type(result) == 'table' and result[nameMainlabel] then
 
result[1] = nameMainlabel
function p.queryParserHelper(frame)
local args = getArgs(frame, { trim = false, removeBlanks = false })
local ret = ''
for _, val in pairs(args) do
ret = ret .. mw.text.nowiki(val) .. cfg.fieldSeparator
-- we need the nowiki, otherwise some the result could produce some unwanted parser results (mw's parser for instance would apply a hrefs to external links)
end
end
return ret:sub(1, -1 - mw.ustring.len(cfg.fieldSeparator)) .. cfg.resultSeparator
return result, query
end
end


Zeile 185: Zeile 159:
classDebug:log(21, 'entering SmwUtil.set', 'SmwUtil.set')
classDebug:log(21, 'entering SmwUtil.set', 'SmwUtil.set')
classDebug:log(23, ' with stash: ' .. (stash and _TT.printTable(stash) or 'NONE'), 'SmwUtil.set')
classDebug:log(23, ' with stash: ' .. (stash and _TT.printTable(stash) or 'NONE'), 'SmwUtil.set')
local frame = mw.getCurrentFrame()
if type(stash) ~= 'string' and type(stash) ~= 'table' then
local query = {}
error('SmwUtil.set: Argument stash has wrong parameter type (' .. type(stash) .. '); must be table or string', 2)
if type(stash) == 'string' then
end
query[1] = stash
-- build and execute query
elseif type(stash) == 'table' then
local query = buildQueryFrom(stash)
for k, v in pairs(stash) do
local result = smw.set(query)
if type(v) == 'table' then
if result == true then
table.insert(query, k .. '=' .. table.concat(v, '|'))
return ''
-- for _, vv in pairs(v) do
-- table.insert(query, k .. '=' .. vv)
-- end
else
if type(v) == 'boolean' then
v = v and 'true' or 'false'
end
table.insert(query, k .. '=' .. v)
end
end
else
else
error('SmwUtil.set: Argument stash has wrong parameter type (' .. type(stash) .. '); must be table or string', 2)
return result.error
end
end
return frame:callParserFunction{name = '#set:', args = query}
end
end


Zeile 223: Zeile 186:
classDebug:log(23, ' with stash: ' .. (stash and _TT.printTable(stash) or 'NONE'), 'SmwUtil.subobject')
classDebug:log(23, ' with stash: ' .. (stash and _TT.printTable(stash) or 'NONE'), 'SmwUtil.subobject')
classDebug:log(23, ' with uid: ' .. (uid and uid or 'NONE'), 'SmwUtil.subobject')
classDebug:log(23, ' with uid: ' .. (uid and uid or 'NONE'), 'SmwUtil.subobject')
local frame = mw.getCurrentFrame()
if type(stash) ~= 'string' and type(stash) ~= 'table' then
local uid = uid or ''
error('SmwUtil.subobject: Argument stash has wrong parameter type (' .. type(stash) .. '); must be table or string', 2)
local query = {}
end
if type(stash) == 'string' then
-- build and execute query
query[1] = stash
local uid = uid or nil
elseif type(stash) == 'table' then
local query = buildQueryFrom(stash)
for k, v in pairs(stash) do
local result = smw.subobject(query, uid)
if type(v) == 'table' then
if result == true then
table.insert(query, k .. '=' .. table.concat(v, '|'))
return ''
-- for _, vv in pairs(v) do
-- table.insert(query, k .. '=' .. vv)
-- end
else
table.insert(query, k .. '=' .. v)
end
end
else
else
error('SmwUtil.set: Argument stash has wrong parameter type (' .. type(stash) .. '); must be table or string', 2)
return result.error
end
end
return frame:callParserFunction{name = '#subobject:' .. uid, args = query}
end  
end  
-- ************************************
-- ************************************

Aktuelle Version vom 2. Juli 2024, 20:16 Uhr

Documentation icon Module documentation

This module provides serveral useful function that can be used in other module to store or retrive data using semantic annotations.

Usage

local _SMW= require('Module:SmwUtil')
if dataStore == 'smw' and stash then
	_SMW.set(stash)
end
local query = {
	select = {'[[is public::yes]]', '[[is of type::datasheet]]', '[[has id::>>10]]'}
	fields = {'_CDAT=Create date', 'bears name=nickname', 'works as=occupation', 'has siblings'}
}
local attributes = {
	limit = 10,
	mainlabel ='-'
}
local result = _SMW.ask(query, attributes)

Functions

Provided functions are as follow:

ask(query, attributes, retainBlanks)

Runs an ask query on the semantic mediawiki triple store according to the parameters provided and returns the result as a lua table. The first parameter (query) has the following fields:

select
table or string, mandatory
the condition the query filters for. can be of string and arbitrarily complex or a table being either of format { propertyname = 'value' }, { '[[propertyname::value]]' } or a mix of both
fields
table or string, optional
the fields, you want to get data from. format of values is fieldname or fieldname=headline (you can skip the preceeding ?). DO NOT USE AN ARRAY! All keys will be discarded! Please uses string only if you have just one field to display. If you want to format the fields and add a headline, please do it before the =, e.g. fieldname#km2=area

Please keep in mind:

  • attributes may contain any attribute you find in the documentation, but intro and outro will be NILed, default and more results text will be set to the empty string, and format will be overwritten
  • per default, does only return fields that contain a value. that can result in an "unbalanced" result, where one row contains more elements than others. if you want to get all fields, set retainBlanks to true
query
table, mandatory
the arguments to construct the query. see above for details
attributes
table, optional
more attributes, you want to pass on to the ask query (like limit, for instance)
retainBlanks
boolean, optional
if set to true, result can contain entries with empty values. per default, these entries will be deleted
return
table, query result as a lua table. see the following printout as example


{
	1 = {
		1 = 'Extension:Cargo'
		has id = '7'
		references = { '901', '821' }
		description = 'Cargo provides a lightweight way to store and query the data contained within the calls to templates, such as infoboxes in mysql tables.'
		MainLabel = 'Extension:Cargo'
	}
	2 = {
		1 = 'Extension:SyntaxHighlight GeSHi'
		has id = '6'
		references = '911'
		description = 'The SyntaxHighlight GeSHi extension provides rich formatting of source code using the "syntaxhighlight"-tag. ...'
		MainLabel = 'Extension:SyntaxHighlight GeSHi'
	}
}

As you can see, the data fields can be indexed either by number or by the provided headline in table fields. (The headline is either the fieldname or a special string you provided via fieldname=headline. The mainlabel always has number 1 and whatever you passed on to attribute mainlabel (if nothing, default is MainLabel).

get(page, field)

A shortcut for show(page, field).

lua(query, attributes, retainBlanks)

A shortcut for ask(query, attributes, retainBlanks).

rawask(query, attributes)

Calls the parser function #ask according to the provided parameters and passes the result on directly. The format of the output is depending on attributes.format. The first parameter (query) has the following mandatory fields:

select
table or string, mandatory
the condition the query filters for. can be of string and arbitrarily complex or a table being either of format { propertyname : 'value' }, { '[[propertyname::value]]' } or a mix of both
fields
table or string, optional
the fields, you want to get data from. format is fieldname or fieldname=headline (you can skip the preceeding ?). Please uses string only if you have just one field to display. If you want to format the fields and add a headline, please do it before the =, e.g. fieldname#km2=area

Please keep in mind:

  • attributes may contain any attribute you find in the documentation, but intro and outro will be NILed, default and more results text will be set to the empty string, and format will be overwritten
  • per default, does only return fields that contain a value. that can result in an "unbalanced" result, where one row contains more elements than others. if you want to get all fields, set retainBlanks to true
query
table, mandatory
the arguments to construct the query. see above for details
attributes
table, optional
more attributes, you want to pass on to the ask query (like limit, for instance)
return
string, the renderd output

set(stash)

Stores provided stash in semantic triple stores.

stash
string or table, mandatory
data to store. if provided as string 'has_property=value', one triple can be stores. if provided as table, you can either use { has_property = 'value' }, { 'has_propert=value' }, or a mix thereof. Even { has_property = {'value1', 'value2', 'value3' } is possible.
Please note: If your properties contain spaces or dashs, you have to encase them, if you want to use them as keys: { ['Has property'] = 'value' }.
return
string, hopefully empty, result of set parser function

show(page, field)

Returns contents of field stored on page

page
string, mandatory
name of page, to get the property contents from (please include namespace but explude brackets), e.g. 'Meta:Mail'
field
string, mandatory
name of property, to get the contents from. You can skip the '?'
return
string, contents of property 'field' on page

subobject(stash, uid)

Stores provided stash as a subject. Contrary to set(stash) the data is not stored directly on the page but in a separate entity called subobject. These objects can be queried for separately.

stash
string or table, mandatory
data to store. if provided as string 'has property=value', one triple can be stores. if provided as table, you can either use { has property = 'value' }, { 'has propert=value' }, or a mix thereof. Even { has property = {'value1', 'value2', 'value3' } is possible.
uid
string, optional
You can supply a uid to identify the object by. Just make sure, it is unique. :)
return
string, hopefully empty, result of set parser function

local p = {}
local classDebug = require('Module:Debug/class')
local getArgs = require('Module:Arguments').getArgs
local smw = mw.smw
local _TT = require('Module:TableTools')

local cfg = {
	nameMainLabel = 'PageName',
}

local buildQueryFrom = function(stash)
	local query = {}
	if type(stash) == 'table' then
		for k, v in pairs(stash) do
			if type(v) == 'table' then
				for _, vv in pairs(v) do
					local val = vv
					if type(vv) == 'boolean' then
						val = vv and 'wahr' or 'falsch'
					end
					if type(k) == 'number' then
						table.insert(query, val)
					elseif type(val) == 'table' then
						error( 'While building set-query, detected invalid table value for key ' .. k .. ': ' .. _TT.printTable(val) )
					else
						table.insert(query, k .. '=' .. val)
					end
				end
			else
				local val = v
				if type(v) == 'boolean' then
					val = v and 'wahr' or 'falsch'
				end
				if type(k) == 'number' then
					table.insert(query, val)
				else
					table.insert(query, k .. '=' .. val)
				end
			end
		end
	else
		query[1] = stash
	end
	return query
end

local extractFieldFrom = function(s)
	local ret = '?' .. s:match('^%??([^#=]+).*$')
	local headline = s:find('=', 1, true) and
		s:match('^.*=([^=]*)$') or nil
	local formatter = s:find('#', 1, true) and
		s:match('^.*#([^=]*).*$') or nil
	-- this causes problems with date formatter; in fact, it prevents dates from being formated
	--if formatter and not formatter:find('-', 1, true) then
	--	formatter = formatter .. '-'
	--end
	return ret .. ( formatter and ('#' .. formatter) or '' ) .. ( headline and ( '=' .. headline ) or '' )
end

function p.ask(query, attributes, retainBlanks)
	classDebug:log(21, 'entering SmwUtil.ask', 'SmwUtil.ask')
	classDebug:log(23, ' with query: ' .. (query and mw.text.nowiki(_TT.printTable(query)) or 'NONE'), 'SmwUtil.ask')
	classDebug:log(23, ' with attributes: ' .. (attributes and mw.text.nowiki(_TT.printTable(attributes)) or 'NONE'), 'SmwUtil.ask')
	local where = query.select and query.select or (query.where and query.where or nil)
	local fields = query.fields
	local attributes = attributes or {}
	if not where or (type(where) == 'table' and _TT.size(where) == 0) or (type(where) == 'string' and #where == 0) then
		error('SmwUtil.ask: Argument query.select is missing or empty!', 2)
	end
	if type(attributes) == 'string' then
		attributes = { attributes }
	elseif type(attributes) ~= 'table' then
		error('SmwUtil.ask: Argument attributes has wrong parameter type (' .. type(attributes) .. '); must be table or string', 2)
	end
	if not attributes.limit then
		attributes.limit = 1000
	end
	local nameMainlabel = (attributes.mainlabel and attributes.mainlabel ~= '-') and attributes.mainlabel or cfg.nameMainLabel
	attributes.mainlabel = '-'
	-- now build the query
	local query = {}
	if type(where) == 'string' then
		table.insert(query, where)
	else
		for k, v in pairs(where) do
			if type(k) == 'number' then
				table.insert(query, v)
			else
				table.insert(query, '[[' .. k .. '::' .. v .. ']]')
			end
		end
	end
	table.insert(query, '?#-=' .. nameMainlabel)
	if type(fields) == 'string' then
		table.insert(query, extractFieldFrom(fields))
	elseif type(fields) == 'table' then
		for _, v in pairs(fields) do
			table.insert(query, extractFieldFrom(v))
		end
	end
	for k, v in pairs(attributes) do
		if type(k) == 'number' then
			table.insert(query, v)
		else
			table.insert(query, k .. '=' .. v)
		end
	end
	local result = smw.ask(query)
	if type(result) == 'table' and result[nameMainlabel] then
		result[1] = nameMainlabel
	end
	return result, query
end

function p.rawask(query, attributes)
	classDebug:log(21, 'entering SmwUtil.rawask', 'SmwUtil.rawask')
	classDebug:log(23, ' with query: ' .. (query and _TT.printTable(query) or 'NONE'), 'SmwUtil.rawask')
	classDebug:log(23, ' with attributes: ' .. (attributes and _TT.printTable(attributes) or 'NONE'), 'SmwUtil.rawask')
	local frame = mw.getCurrentFrame()
	local select = query.select and query.select or (query.where and query.where or nil)
	local fields = query.fields
	local selection = ''
	if type(select) == 'string' then
		selection = select
	elseif type(select) == 'table' then
		for k, v in pairs(select) do
			if type(k) == 'number' then
				selection = selection .. ' ' .. v
			else
				selection = selection .. ' [[' .. k .. '::' .. v .. ']]'
			end
		end
	else
		error('SmwUtil.rawask: Argument query.select has wrong parameter type (' .. type(select) .. '); must be table or string', 2)
	end
	local args = {}
	if type(fields) == 'string' then
		args[1] = mw.ustring.sub( fields, 1, 1 ) ~= '?' and '?' .. fields or fields
	elseif type(fields) == 'table' then
		for k, v in pairs(fields) do
			args[k] = mw.ustring.sub( v, 1, 1 ) ~= '?' and '?' .. v or v
		end
	end
	if attributes then
		if type(attributes) == 'string' then
			table.insert(args, attributes)
		elseif type(attributes) == 'table' then
			for k, v in pairs(attributes) do
				args[k] = v
			end
		else
			error('SmwUtil.rawask: Argument attributes has wrong parameter type (' .. type(attributes) .. '); must be table or string', 2)
		end
	end
	return frame:callParserFunction{ name = '#ask:' .. selection, args = args}
end

function p.set(stash)
	classDebug:log(21, 'entering SmwUtil.set', 'SmwUtil.set')
	classDebug:log(23, ' with stash: ' .. (stash and _TT.printTable(stash) or 'NONE'), 'SmwUtil.set')
	if type(stash) ~= 'string' and type(stash) ~= 'table' then
		error('SmwUtil.set: Argument stash has wrong parameter type (' .. type(stash) .. '); must be table or string', 2)
	end
	-- build and execute query
	local query = buildQueryFrom(stash)
	local result = smw.set(query)
	if result == true then
		return ''
	else
		return result.error
	end
end

function p.show(page, field)
	classDebug:log(21, 'entering SmwUtil.show', 'SmwUtil.show')
	classDebug:log(23, ' with page: ' .. (page and page or 'NONE'), 'SmwUtil.show')
	classDebug:log(23, ' with field: ' .. (field and field or 'NONE'), 'SmwUtil.show')
	local frame = mw.getCurrentFrame()
	local page = page:match('^[%[]*([^%[%]]+)[%]]*$')
	local field = mw.ustring.sub( field, 1, 1 ) ~= '?' and '?' .. field or field
	return frame:callParserFunction('#show:' .. page, field)
end

function p.subobject(stash, uid)
	classDebug:log(21, 'entering SmwUtil.subobject', 'SmwUtil.subobject')
	classDebug:log(23, ' with stash: ' .. (stash and _TT.printTable(stash) or 'NONE'), 'SmwUtil.subobject')
	classDebug:log(23, ' with uid: ' .. (uid and uid or 'NONE'), 'SmwUtil.subobject')
	if type(stash) ~= 'string' and type(stash) ~= 'table' then
		error('SmwUtil.subobject: Argument stash has wrong parameter type (' .. type(stash) .. '); must be table or string', 2)
	end
	-- build and execute query
	local uid = uid or nil
	local query = buildQueryFrom(stash)
	local result = smw.subobject(query, uid)
	if result == true then
		return ''
	else
		return result.error
	end
end 
-- ************************************
-- alias definition
-- ************************************

p.get = p.show
p.lua = p.ask

return p