mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-05 11:32:12 +09:00
161 lines
5.5 KiB
PHP
161 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers;
|
|
|
|
/**
|
|
* Module action (conf/module.xml) parser class for XE compatibility.
|
|
*/
|
|
class ModuleActionParser
|
|
{
|
|
/**
|
|
* Load an XML file.
|
|
*
|
|
* @param string $filename
|
|
* @return object|null
|
|
*/
|
|
public static function loadXML(string $filename): ?object
|
|
{
|
|
// Get the current language.
|
|
$lang = \Context::getLangType();
|
|
|
|
// Load the XML file.
|
|
$xml = simplexml_load_file($filename);
|
|
if ($xml === false)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Initialize the module definition.
|
|
$info = new \stdClass;
|
|
$info->admin_index_act = '';
|
|
$info->default_index_act = '';
|
|
$info->setup_index_act = '';
|
|
$info->simple_setup_index_act = '';
|
|
$info->action = new \stdClass;
|
|
$info->menu = new \stdClass;
|
|
$info->grant = new \stdClass;
|
|
$info->permission = new \stdClass;
|
|
$info->permission_check = new \stdClass;
|
|
|
|
// Parse grants.
|
|
foreach ($xml->grants->grant as $grant)
|
|
{
|
|
$grant_info = new \stdClass;
|
|
$grant_info->title = self::_getElementsByLang($grant, 'title', $lang);
|
|
$grant_info->default = trim($grant['default']);
|
|
$grant_name = trim($grant['name']);
|
|
$info->grant->{$grant_name} = $grant_info;
|
|
}
|
|
|
|
// Parse permissions.
|
|
foreach ($xml->permissions->permission as $permission)
|
|
{
|
|
$action_name = trim($permission['action']);
|
|
$permission = trim($permission['target']);
|
|
$info->permission->{$action_name} = $permission;
|
|
|
|
$check = new \stdClass;
|
|
$check->key = trim($permission['check_var']) ?: trim($permission['check-var']);
|
|
$check->type = trim($permission['check_type']) ?: trim($permission['check-type']);
|
|
$info->permission_check->{$action_name} = $check;
|
|
}
|
|
|
|
// Parse menus.
|
|
foreach ($xml->menus->menu as $menu)
|
|
{
|
|
$menu_info = new \stdClass;
|
|
$menu_info->title = self::_getElementsByLang($menu, 'title', $lang);
|
|
$menu_info->index = null;
|
|
$menu_info->acts = array();
|
|
$menu_info->type = trim($menu['type']);
|
|
$menu_name = trim($menu['name']);
|
|
$info->menu->{$menu_name} = $menu_info;
|
|
}
|
|
|
|
// Parse actions.
|
|
foreach ($xml->actions->action as $action)
|
|
{
|
|
$action_name = trim($action['name']);
|
|
$permission = trim($action['permission']);
|
|
if ($permission)
|
|
{
|
|
$info->permission->{$action_name} = $permission;
|
|
if (isset($info->permission_check->{$action_name}))
|
|
{
|
|
$info->permission_check->{$action_name} = new \stdClass;
|
|
}
|
|
$info->permission_check->{$action_name}->key = trim($action['check_var']) ?: trim($action['check-var']);
|
|
$info->permission_check->{$action_name}->type = trim($action['check_type']) ?: trim($action['check-type']);
|
|
}
|
|
|
|
$action_info = new \stdClass;
|
|
$action_info->type = trim($action['type']);
|
|
$action_info->grant = trim($action['grant']) ?: 'guest';
|
|
$action_info->standalone = trim($action['standalone']) === 'false' ? 'false' : 'true';
|
|
$action_info->ruleset = trim($action['ruleset']);
|
|
$action_info->method = trim($action['method']);
|
|
$action_info->check_csrf = (trim($action['check_csrf']) ?: trim($action['check-csrf'])) === 'false' ? 'false' : 'true';
|
|
$action_info->meta_noindex = (trim($action['meta_noindex']) ?: trim($action['meta-noindex'])) === 'true' ? 'true' : 'false';
|
|
$info->action->{$action_name} = $action_info;
|
|
|
|
$menu_name = trim($action['menu_name']);
|
|
if ($menu_name)
|
|
{
|
|
$info->menu->{$menu_name}->acts[] = $action_name;
|
|
if (toBool($action['menu_index']))
|
|
{
|
|
$info->menu->{$menu_name}->index = $action_name;
|
|
}
|
|
}
|
|
if (toBool($action['index']))
|
|
{
|
|
$info->default_index_act = $action_name;
|
|
}
|
|
if (toBool($action['admin_index']))
|
|
{
|
|
$info->admin_index_act = $action_name;
|
|
}
|
|
if (toBool($action['setup_index']))
|
|
{
|
|
$info->setup_index_act = $action_name;
|
|
}
|
|
if (toBool($action['simple_setup_index']))
|
|
{
|
|
$info->simple_setup_index_act = $action_name;
|
|
}
|
|
}
|
|
|
|
// Return the complete result.
|
|
return $info;
|
|
}
|
|
|
|
/**
|
|
* Get child elements that match a language.
|
|
*
|
|
* @param SimpleXMLElement $parent
|
|
* @param string $tag_name
|
|
* @param string $lang
|
|
* @return string|null
|
|
*/
|
|
protected static function _getElementsByLang(\SimpleXMLElement $parent, string $tag_name, string $lang): ?string
|
|
{
|
|
// If there is a child element that matches the language, return it.
|
|
foreach ($parent->{$tag_name} as $child)
|
|
{
|
|
$attribs = $child->attributes('xml', true);
|
|
if (strval($attribs['lang']) === $lang)
|
|
{
|
|
return trim($child);
|
|
}
|
|
}
|
|
|
|
// Otherwise, return the first child element.
|
|
foreach ($parent->{$tag_name} as $child)
|
|
{
|
|
return trim($child);
|
|
}
|
|
|
|
// If there are no child elements, return null.
|
|
return null;
|
|
}
|
|
}
|