123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- defined('IN_IA') or exit('Access Denied');
- function module_types() {
- static $types = array(
- 'business' => array(
- 'name' => 'business',
- 'title' => '主要业务',
- 'desc' => ''
- ),
- 'customer' => array(
- 'name' => 'customer',
- 'title' => '客户关系',
- 'desc' => ''
- ),
- 'activity' => array(
- 'name' => 'activity',
- 'title' => '营销及活动',
- 'desc' => ''
- ),
- 'services' => array(
- 'name' => 'services',
- 'title' => '常用服务及工具',
- 'desc' => ''
- ),
- 'biz' => array(
- 'name' => 'biz',
- 'title' => '行业解决方案',
- 'desc' => ''
- ),
- 'enterprise' => array(
- 'name' => 'enterprise',
- 'title' => '企业应用',
- 'desc' => ''
- ),
- 'h5game' => array(
- 'name' => 'h5game',
- 'title' => 'H5游戏',
- 'desc' => ''
- ),
- 'other' => array(
- 'name' => 'other',
- 'title' => '其他',
- 'desc' => ''
- )
- );
- return $types;
- }
- function module_entries($name, $types = array(), $rid = 0, $args = null) {
- load()->func('communication');
- global $_W;
-
- $ts = array('rule', 'cover', 'menu', 'home', 'profile', 'shortcut', 'function', 'mine', 'system_welcome');
-
-
- if(empty($types)) {
- $types = $ts;
- } else {
- $types = array_intersect($types, $ts);
- }
- $bindings = pdo_getall('modules_bindings', array('module' => $name, 'entry' => $types), array(), '', 'displayorder DESC, eid ASC');
- $entries = array();
- foreach($bindings as $bind) {
- if(!empty($bind['call'])) {
- $response = ihttp_request(url('utility/bindcall', array('modulename' => $bind['module'], 'callname' => $bind['call'], 'args' => $args, 'uniacid' => $_W['uniacid'])), array(), $extra);
- if (is_error($response)) {
- continue;
- }
- $response = json_decode($response['content'], true);
- $ret = $response['message']['message'];
- if(is_array($ret)) {
- foreach($ret as $i => $et) {
- if (empty($et['url'])) {
- continue;
- }
- $et['url'] = $et['url'] . '&__title=' . urlencode($et['title']);
- $entries[$bind['entry']][] = array('eid' => 'user_' . $i, 'title' => $et['title'], 'do' => $et['do'], 'url' => $et['url'], 'from' => 'call', 'icon' => $et['icon'], 'displayorder' => $et['displayorder']);
- }
- }
- } else {
- if($bind['entry'] == 'cover') {
- $url = murl('entry', array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'menu') {
- $url = wurl("site/entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'mine') {
- $url = $bind['url'];
- }
- if($bind['entry'] == 'rule') {
- $par = array('eid' => $bind['eid']);
- if (!empty($rid)) {
- $par['id'] = $rid;
- }
- $url = wurl("site/entry", $par);
- }
- if($bind['entry'] == 'home') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'profile') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'shortcut') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'system_welcome') {
- $url = wurl("site/entry", array('eid' => $bind['eid']));
- }
- if(empty($bind['icon'])) {
- $bind['icon'] = 'fa fa-puzzle-piece';
- }
- $entries[$bind['entry']][] = array('eid' => $bind['eid'], 'title' => $bind['title'], 'do' => $bind['do'], 'url' => $url, 'from' => 'define', 'icon' => $bind['icon'], 'displayorder' => $bind['displayorder'], 'direct' => $bind['direct']);
- }
- }
- return $entries;
- }
- function module_app_entries($name, $types = array(), $args = null) {
- global $_W;
- $ts = array('rule', 'cover', 'menu', 'home', 'profile', 'shortcut', 'function');
- if(empty($types)) {
- $types = $ts;
- } else {
- $types = array_intersect($types, $ts);
- }
- $bindings = pdo_getall('modules_bindings', array('module' => $name, 'entry' => $types));
- $entries = array();
- foreach($bindings as $bind) {
- if(!empty($bind['call'])) {
- $extra = array();
- $extra['Host'] = $_SERVER['HTTP_HOST'];
- load()->func('communication');
- $urlset = parse_url($_W['siteurl']);
- $urlset = pathinfo($urlset['path']);
- $response = ihttp_request($_W['sitescheme'] . '127.0.0.1/'. $urlset['dirname'] . '/' . url('utility/bindcall', array('modulename' => $bind['module'], 'callname' => $bind['call'], 'args' => $args, 'uniacid' => $_W['uniacid'])), array('W'=>base64_encode(iserializer($_W))), $extra);
- if (is_error($response)) {
- continue;
- }
- $response = json_decode($response['content'], true);
- $ret = $response['message'];
- if(is_array($ret)) {
- foreach($ret as $et) {
- $et['url'] = $et['url'] . '&__title=' . urlencode($et['title']);
- $entries[$bind['entry']][] = array('title' => $et['title'], 'url' => $et['url'], 'from' => 'call');
- }
- }
- } else {
- if($bind['entry'] == 'cover') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'home') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'profile') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- if($bind['entry'] == 'shortcut') {
- $url = murl("entry", array('eid' => $bind['eid']));
- }
- $entries[$bind['entry']][] = array('title' => $bind['title'], 'do' => $bind['do'], 'url' => $url, 'from' => 'define');
- }
- }
- return $entries;
- }
- function module_entry($eid) {
- $sql = "SELECT * FROM " . tablename('modules_bindings') . " WHERE `eid`=:eid";
- $pars = array();
- $pars[':eid'] = $eid;
- $entry = pdo_fetch($sql, $pars);
- if(empty($entry)) {
- return error(1, '模块菜单不存在');
- }
- $module = module_fetch($entry['module']);
- if(empty($module)) {
- return error(2, '模块不存在');
- }
- $querystring = array(
- 'do' => $entry['do'],
- 'm' => $entry['module'],
- );
- if (!empty($entry['state'])) {
- $querystring['state'] = $entry['state'];
- }
- $entry['url'] = murl('entry', $querystring);
- $entry['url_show'] = murl('entry', $querystring, true, true);
- return $entry;
- }
- function module_build_form($name, $rid, $option = array()) {
- $rid = intval($rid);
- $m = WeUtility::createModule($name);
- if(!empty($m)) {
- return $m->fieldsFormDisplay($rid, $option);
- }else {
- return null;
- }
- }
- function module_save_group_package($package) {
- global $_W;
- load()->model('user');
- load()->model('cache');
- if (empty($package['name'])) {
- return error(-1, '请输入套餐名');
- }
- if (user_is_vice_founder()) {
- $package['owner_uid'] = $_W['uid'];
- }
- if (!empty($package['modules'])) {
- $package['modules'] = iserializer($package['modules']);
- }
- if (!empty($package['templates'])) {
- $templates = array();
- foreach ($package['templates'] as $template) {
- $templates[] = $template['id'];
- }
- $package['templates'] = iserializer($templates);
- }
- if (!empty($package['id'])) {
- $name_exist = pdo_get('uni_group', array('uniacid' => 0, 'id <>' => $package['id'], 'name' => $package['name']));
- } else {
- $name_exist = pdo_get('uni_group', array('uniacid' => 0, 'name' => $package['name']));
- }
- if (!empty($name_exist)) {
- return error(-1, '套餐名已存在');
- }
- if (!empty($package['id'])) {
- pdo_update('uni_group', $package, array('id' => $package['id']));
- cache_build_account_modules();
- } else {
- pdo_insert('uni_group', $package);
- }
- cache_build_uni_group();
- return error(0, '添加成功');
- }
- function module_fetch($name) {
- load()->object('cloudapi');
- global $_W;
- $cachekey = cache_system_key(CACHE_KEY_MODULE_INFO, $name);
- $module = cache_load($cachekey);
- if (empty($module)) {
- $sql = 'SELECT * FROM '. tablename('modules') . " as a LEFT JOIN" . tablename('modules_recycle') . " as b ON a.name = b.modulename WHERE a.name = :name AND b.modulename is NULL";
- $module_info = pdo_fetch($sql, array(':name' => $name));
- if (empty($module_info)) {
- return array();
- }
- if (!empty($module_info['subscribes'])) {
- $module_info['subscribes'] = (array)unserialize ($module_info['subscribes']);
- }
- if (!empty($module_info['handles'])) {
- $module_info['handles'] = (array)unserialize ($module_info['handles']);
- }
- $module_info['isdisplay'] = 1;
- if (file_exists (IA_ROOT . '/addons/' . $module_info['name'] . '/icon-custom.jpg')) {
- $module_info['logo'] = tomedia (IA_ROOT . '/addons/' . $module_info['name'] . '/icon-custom.jpg') . "?v=" . time ();
- } else {
- $module_info['logo'] = tomedia (IA_ROOT . '/addons/' . $module_info['name'] . '/icon.jpg') . "?v=" . time ();
- }
- $module_info['main_module'] = pdo_getcolumn ('modules_plugin', array ('name' => $module_info['name']), 'main_module');
- if (!empty($module_info['main_module'])) {
- $main_module_info = module_fetch ($module_info['main_module']);
- $module_info['main_module_logo'] = $main_module_info['logo'];
- } else {
- $module_info['plugin_list'] = pdo_getall ('modules_plugin', array ('main_module' => $module_info['name']), array (), 'name');
- if (!empty($module_info['plugin_list'])) {
- $module_info['plugin_list'] = array_keys ($module_info['plugin_list']);
- }
- }
- if ($module_info['app_support'] != MODULE_SUPPORT_ACCOUNT && $module_info['wxapp_support'] != MODULE_SUPPORT_WXAPP && $module_info['webapp_support'] != MODULE_SUPPORT_WEBAPP && $module_info['welcome_support'] != MODULE_SUPPORT_SYSTEMWELCOME) {
- $module_info['app_support'] = MODULE_SUPPORT_ACCOUNT;
- }
- $module_info['is_relation'] = $module_info['app_support'] ==2 && $module_info['wxapp_support'] == 2 ? true : false;
- $module_ban = setting_load('module_ban');
- if (in_array($name, $module_ban['module_ban'])) {
- $module_info['is_ban'] = true;
- }
- $module_upgrade = setting_load('module_upgrade');
- if (in_array($name, array_keys($module_upgrade['module_upgrade']))) {
- $module_info['is_upgrade'] = true;
- }
- $module = $module_info;
- cache_write($cachekey, $module_info);
- }
- if (!empty($module) && !empty($_W['uniacid'])) {
- $setting_cachekey = cache_system_key(CACHE_KEY_MODULE_SETTING, $_W['uniacid'], $name);
- $setting = cache_load($setting_cachekey);
- if (empty($setting)) {
- $setting = pdo_get('uni_account_modules', array('module' => $name, 'uniacid' => $_W['uniacid']));
- if (!empty($setting)) {
- cache_write($setting_cachekey, $setting);
- }
- }
- $module['config'] = !empty($setting['settings']) ? iunserializer($setting['settings']) : array();
- $module['enabled'] = $module['issystem'] || !isset($setting['enabled']) ? 1 : $setting['enabled'];
- $module['shortcut'] = $setting['shortcut'];
- }
- return $module;
- }
- function module_get_all_unistalled($status, $cache = true, $module_type = '') {
- load()->func('communication');
- load()->model('cloud');
- load()->classs('cloudapi');
- $status = $status == 'recycle' ? 'recycle' : 'uninstalled';
- $cloud_api = new CloudApi();
- $uninstallModules = cache_load(cache_system_key('module:all_uninstall'));
- if (!$cache && $status == 'uninstalled') {
- $get_cloud_m_count = $cloud_api->get('site', 'stat', array('module_quantity' => 1), 'json');
- $cloud_m_count = $get_cloud_m_count['module_quantity'];
- } else {
- if(is_array($uninstallModules)){
- $cloud_m_count = $uninstallModules['cloud_m_count'];
- }
- }
- if (ACCOUNT_TYPE == ACCOUNT_TYPE_APP_NORMAL) {
- $account_type = 'wxapp';
- } elseif (ACCOUNT_TYPE == ACCOUNT_TYPE_OFFCIAL_NORMAL) {
- $account_type = 'app';
- } elseif (ACCOUNT_TYPE == ACCOUNT_TYPE_WEBAPP_NORMAL) {
- $account_type = 'webapp';
- } elseif (ACCOUNT_TYPE == ACCOUNT_TYPE_PHONEAPP_NORMAL) {
- $account_type = 'phoneapp';
- }
- if (!empty($module_type)) {
- $account_type = $module_type;
- }
- if (!is_array($uninstallModules) || empty($uninstallModules['modules'][$status][$account_type]) || intval($uninstallModules['cloud_m_count']) !== intval($cloud_m_count) || is_error($get_cloud_m_count)) {
- $uninstallModules = cache_build_uninstalled_module();
- }
- if (!empty($account_type)) {
- $uninstallModules['modules'] = (array)$uninstallModules['modules'][$status][$account_type];
- $uninstallModules['module_count'] = $uninstallModules[$account_type . '_count'];
- }
- return $uninstallModules;
- }
- function module_permission_fetch($name) {
- $module = module_fetch($name);
- $data = array();
- if($module['settings']) {
- $data[] = array('title' => '参数设置', 'permission' => $name.'_settings');
- }
- if($module['isrulefields']) {
- $data[] = array('title' => '回复规则列表', 'permission' => $name.'_rule');
- }
- $entries = module_entries($name);
- if(!empty($entries['home'])) {
- $data[] = array('title' => '微站首页导航', 'permission' => $name.'_home');
- }
- if(!empty($entries['profile'])) {
- $data[] = array('title' => '个人中心导航', 'permission' => $name.'_profile');
- }
- if(!empty($entries['shortcut'])) {
- $data[] = array('title' => '快捷菜单', 'permission' => $name.'_shortcut');
- }
- if(!empty($entries['cover'])) {
- foreach($entries['cover'] as $cover) {
- $data[] = array('title' => $cover['title'], 'permission' => $name.'_cover_'.$cover['do']);
- }
- }
- if(!empty($entries['menu'])) {
- foreach($entries['menu'] as $menu) {
- $data[] = array('title' => $menu['title'], 'permission' => $name.'_menu_'.$menu['do']);
- }
- }
- unset($entries);
- if(!empty($module['permissions'])) {
- $module['permissions'] = (array)iunserializer($module['permissions']);
- foreach ($module['permissions'] as $permission) {
- $data[] = array('title' => $permission['title'], 'permission' => $name . '_permission_' . $permission['permission']);
- }
- }
- return $data;
- }
- function module_uninstall($module_name, $is_clean_rule = false) {
- global $_W;
- load()->object('cloudapi');
- if (empty($_W['isfounder'])) {
- return error(1, '您没有卸载模块的权限!');
- }
- $module_name = trim($module_name);
- $module = pdo_get('modules', array('name' => $module_name));
- if (empty($module)) {
- return error(1, '模块已经被卸载或是不存在!');
- }
- if (!empty($module['issystem'])) {
- return error(1, '系统模块不能卸载!');
- }
- pdo_delete('modules_plugin', array('main_module' => $module_name));
- pdo_delete('uni_account_modules', array('module' => $module_name));
- cache_delete(cache_system_key('module:all_uninstall'));
- ext_module_clean($module_name, $is_clean_rule);
- cache_build_module_subscribe_type();
- cache_build_uninstalled_module();
- cache_build_module_info($module_name);
- return true;
- }
- function module_execute_uninstall_script($module_name) {
- global $_W;
- load()->object('cloudapi');
- load()->model('cloud');
- if (empty($_W['isfounder'])) {
- return error(1, '您没有卸载模块的权限!');
- }
- $modulepath = IA_ROOT . '/addons/' . $module_name . '/';
- $manifest = ext_module_manifest($module_name);
- if (empty($manifest)) {
- $result = cloud_prepare();
- if (is_error($result)) {
- return error(1, $result['message']);
- }
- $packet = cloud_m_build($module_name, 'uninstall');
- if ($packet['sql']) {
- pdo_run(base64_decode($packet['sql']));
- } elseif ($packet['script']) {
- $uninstall_file = $modulepath . TIMESTAMP . '.php';
- file_put_contents($uninstall_file, base64_decode($packet['script']));
- require($uninstall_file);
- unlink($uninstall_file);
- }
- } else {
- if (!empty($manifest['uninstall'])) {
- if (strexists($manifest['uninstall'], '.php')) {
- if (file_exists($modulepath . $manifest['uninstall'])) {
- require($modulepath . $manifest['uninstall']);
- }
- } else {
- pdo_run($manifest['uninstall']);
- }
- }
- }
- pdo_delete('modules_recycle', array('modulename' => $module_name));
- $cloudapi = new CloudApi();
- $recycle_module = $cloudapi->post('cache', 'get', array('key' => cache_system_key('recycle_module:')));
- $recycle_module = !empty($recycle_module['data']) ? $recycle_module['data'] : array();
- unset($recycle_module[$module_name]);
- $cloudapi->post('cache', 'set', array('key' => cache_system_key('recycle_module:'), 'value' => $recycle_module));
- cache_delete(cache_system_key('module:all_uninstall'));
- return true;
- }
- function module_get_plugin_list($module_name) {
- $module_info = module_fetch($module_name);
- if (!empty($module_info['plugin_list']) && is_array($module_info['plugin_list'])) {
- $plugin_list = array();
- foreach ($module_info['plugin_list'] as $plugin) {
- $plugin_info = module_fetch($plugin);
- if (!empty($plugin_info)) {
- $plugin_list[$plugin] = $plugin_info;
- }
- }
- return $plugin_list;
- } else {
- return array();
- }
- }
- function module_status($module) {
- load()->model('cloud');
- $module_status = array('upgrade' => array('upgrade' => 0), 'ban' => 0);
- $cloud_m_query = cloud_m_query($module);
- $cloud_m_query['pirate_apps'] = is_array($cloud_m_query['pirate_apps']) ? $cloud_m_query['pirate_apps'] : array();
- $module_status['ban'] = in_array($module, $cloud_m_query['pirate_apps']) ? 1 : 0;
- $cloud_m_info = cloud_m_info($module);
- $module_info = module_fetch($module);
- if (!empty($cloud_m_info) && !empty($cloud_m_info['version']['version'])) {
- if (version_compare($module_info['version'], $cloud_m_info['version']['version'])) {
- $module_status['upgrade'] = array('name' => $module_info['title'], 'version' => $cloud_m_info['version']['version'], 'upgrade' => 1);
- }
- } else {
- $manifest = ext_module_manifest($module);
- if (!empty($manifest)) {
- if (version_compare($module_info['version'], $manifest['application']['version'])) {
- $module_status['upgrade'] = array('name' => $module_info['title'], 'version' => $manifest['application']['version'], 'upgrade' => 1);
- }
- }
- }
- $cache_build_module = false;
- $module_ban_setting = setting_load('module_ban');
- $module_ban_setting = is_array($module_ban_setting['module_ban']) ? $module_ban_setting['module_ban'] : array();
- if (!in_array($module, $module_ban_setting) && !empty($module_status['ban'])) {
- $module_ban_setting[] = $module;
- $cache_build_module = true;
- setting_save($module_ban_setting, 'module_ban');
- }
- if (in_array($module, $module_ban_setting) && empty($module_status['ban'])) {
- $key = array_search($module, $module_ban_setting);
- unset($module_ban_setting[$key]);
- $cache_build_module = true;
- setting_save($module_ban_setting, 'module_ban');
- }
- $module_upgrade_setting = setting_load('module_upgrade');
- $module_upgrade_setting = is_array($module_upgrade_setting['module_upgrade']) ? $module_upgrade_setting['module_upgrade'] : array();
- if (!in_array($module, array_keys($module_upgrade_setting)) && !empty($module_status['upgrade']['upgrade'])) {
- $module_upgrade_setting[$module] = $module_status['upgrade'];
- $cache_build_module = true;
- setting_save($module_upgrade_setting, 'module_upgrade');
- }
- if (in_array($module, array_keys($module_upgrade_setting)) && empty($module_status['upgrade']['upgrade'])) {
- unset($module_upgrade_setting[$module]);
- $cache_build_module = true;
- setting_save($module_upgrade_setting, 'module_upgrade');
- }
- if ($cache_build_module) {
- cache_build_module_info($module);
- }
- return $module_status;
- }
- function module_filter_upgrade($module_list) {
- $modules = array();
- $installed_module = pdo_getall('modules', array('name' => $module_list), array('version', 'name'), 'name');
- $all_upgrade_cloud_module = cache_load(cache_system_key('all_cloud_upgrade_module:'));
- if (empty($all_upgrade_cloud_module)) {
- $all_upgrade_cloud_module = cache_build_cloud_upgrade_module();
- }
- if (!empty($module_list) && is_array($module_list) && !empty($installed_module)) {
- foreach ($module_list as $key => $module) {
- if (empty($installed_module[$module])) {
- continue;
- }
- $manifest = ext_module_manifest($module);
- if (!empty($manifest)&& is_array($manifest)) {
- $module = array('name' => $module);
- $module['from'] = 'local';
- if (version_compare($installed_module[$module['name']]['version'], $manifest['application']['version']) == '-1') {
- $module['upgrade'] = true;
- $module['upgrade_branch'] = true;
- $modules[$module['name']] = $module;
- }
- } else {
- if (is_array($all_upgrade_cloud_module) && !empty($all_upgrade_cloud_module[$module])) {
- $modules[$module] = $all_upgrade_cloud_module[$module];
- }
- }
- }
- }
- return $modules;
- }
- function module_upgrade_new($type = 'account') {
- if ($type == 'wxapp') {
- $module_list = user_module_by_account_type('wxapp');
- } else {
- $module_list = user_module_by_account_type('account');
- }
- $upgrade_modules = module_filter_upgrade(array_keys($module_list));
- if (!empty($upgrade_modules)) {
- foreach ($upgrade_modules as $key => &$module) {
- $module_fetch = module_fetch($key);
- $module['logo'] = $module_fetch['logo'];
- $module['link'] = url('module/manage-system/module_detail', array('name' => $module['name'], 'show' => 'upgrade'));
- }
- unset($module);
- }
- return $upgrade_modules;
- }
- function module_exist_in_account($module_name, $uniacid) {
- global $_W;
- $result = false;
- $module_name = trim($module_name);
- $uniacid = intval($uniacid);
- if (empty($module_name) || empty($uniacid)) {
- return $result;
- }
- $founders = explode(',', $_W['config']['setting']['founder']);
- $owner_uid = pdo_getcolumn('uni_account_users', array('uniacid' => $uniacid, 'role' => 'owner'), 'uid');
- if (!empty($owner_uid) && !in_array($owner_uid, $founders)) {
- $packageids = pdo_getall('uni_account_group', array('uniacid' => $uniacid), array('groupid'), 'groupid');
- $packageids = array_keys($packageids);
- if (IMS_FAMILY == 'x') {
- $site_store_buy_goods = uni_site_store_buy_goods($uniacid);
- $site_store_buy_package = table('store')->searchUserBuyPackage($uniacid);
- $packageids = array_merge($packageids, array_keys($site_store_buy_package));
- } else {
- $site_store_buy_goods = array();
- }
- if (!in_array('-1', $packageids)) {
- $uni_modules = array();
- $uni_groups = pdo_fetchall("SELECT `modules` FROM " . tablename('uni_group') . " WHERE " . "id IN ('".implode("','", $packageids)."') OR " . " uniacid = '{$uniacid}'");
- if (!empty($uni_groups)) {
- foreach ($uni_groups as $group) {
- $group_module = (array)iunserializer($group['modules']);
- $uni_modules = array_merge($group_module, $uni_modules);
- }
- }
- $user_modules = user_modules($owner_uid);
- $modules = array_merge(array_keys($user_modules), $uni_modules, $site_store_buy_goods);
- $result = in_array($module_name, $modules) ? true : false;
- } else {
- $result = true;
- }
- } else {
- $result = true;
- }
- return $result;
- }
- function module_get_user_account_list($uid, $module_name) {
- $accounts_list = array();
- $uid = intval($uid);
- $module_name = trim($module_name);
- if (empty($uid) || empty($module_name)) {
- return $accounts_list;
- }
- $module_info = module_fetch($module_name);
- if (empty($module_info)) {
- return $accounts_list;
- }
- $account_users_info = table('account')->userOwnedAccount($uid);
- if (empty($account_users_info)) {
- return $accounts_list;
- }
- $accounts = array();
- foreach ($account_users_info as $account) {
- if (empty($account['uniacid'])) {
- continue;
- }
- $uniacid = 0;
- if (($account['type'] == ACCOUNT_TYPE_OFFCIAL_NORMAL || $account['type'] == ACCOUNT_TYPE_OFFCIAL_AUTH) && $module_info['app_support'] == MODULE_SUPPORT_ACCOUNT) {
- $uniacid = $account['uniacid'];
- } elseif ($account['type'] == ACCOUNT_TYPE_APP_NORMAL && $module_info['wxapp_support'] == MODULE_SUPPORT_WXAPP) {
- $uniacid = $account['uniacid'];
- }
- if (!empty($uniacid)) {
- if (module_exist_in_account($module_name, $uniacid)) {
- $accounts_list[$uniacid] = $account;
- }
- }
- }
- return $accounts_list;
- }
- function module_link_uniacid_fetch($uid, $module_name) {
- $result = array();
- $uid = intval($uid);
- $module_name = trim($module_name);
- if (empty($uid) || empty($module_name)) {
- return $result;
- }
- $accounts_list = module_get_user_account_list($uid, $module_name);
- if (empty($accounts_list)) {
- return $result;
- }
- $accounts_link_result = array();
- foreach ($accounts_list as $key => $account_value) {
- if ($account_value['type'] == ACCOUNT_TYPE_APP_NORMAL) {
- $account_value['versions'] = wxapp_version_all($account_value['uniacid']);
- if (empty($account_value['versions'])) {
- $accounts_link_result[$key] = $account_value;
- continue;
- }
- foreach ($account_value['versions'] as $version_key => $version_value) {
- if (empty($version_value['modules'])) {
- continue;
- }
- if ($version_value['modules'][0]['name'] != $module_name) {
- continue;
- }
- if (empty($version_value['modules'][0]['account']) || !is_array($version_value['modules'][0]['account'])) {
- $accounts_link_result[$key] = $account_value;
- continue;
- }
- if (!empty($version_value['modules'][0]['account']['uniacid'])) {
- $accounts_link_result[$version_value['modules'][0]['account']['uniacid']][] = array(
- 'uniacid' => $key,
- 'version' => $version_value['version'],
- 'version_id' => $version_value['id'],
- 'name' => $account_value['name'],
- );
- unset($account_value['versions'][$version_key]);
- }
- }
- }
- if ($account_value['type'] == ACCOUNT_TYPE_OFFCIAL_NORMAL || $account_value['type'] == ACCOUNT_TYPE_OFFCIAL_AUTH) {
- if (empty($accounts_link_result[$key])) {
- $accounts_link_result[$key] = $account_value;
- } else {
- $link_wxapp = $accounts_link_result[$key];
- $accounts_link_result[$key] = $account_value;
- $accounts_link_result[$key]['link_wxapp'] = $link_wxapp;
- }
- }
- }
- if (!empty($accounts_link_result)) {
- foreach ($accounts_link_result as $link_key => $link_value) {
- if (in_array($link_value['type'], array(ACCOUNT_TYPE_OFFCIAL_NORMAL, ACCOUNT_TYPE_OFFCIAL_AUTH)) && !empty($link_value['link_wxapp']) && is_array($link_value['link_wxapp'])) {
- foreach ($link_value['link_wxapp'] as $value) {
- $result[] = array(
- 'app_name' => $link_value['name'],
- 'wxapp_name' => $value['name'] . ' ' . $value['version'],
- 'uniacid' => $link_value['uniacid'],
- 'version_id' => $value['version_id'],
- );
- }
- } elseif ($link_value['type'] == ACCOUNT_TYPE_APP_NORMAL && !empty($link_value['versions']) && is_array($link_value['versions'])) {
- foreach ($link_value['versions'] as $value) {
- $result[] = array(
- 'app_name' => '',
- 'wxapp_name' => $link_value['name'] . ' ' . $value['version'],
- 'uniacid' => $link_value['uniacid'],
- 'version_id' => $value['id'],
- );
- }
- } else {
- $result[] = array(
- 'app_name' => $link_value['name'],
- 'wxapp_name' => '',
- 'uniacid' => $link_value['uniacid'],
- 'version_id' => '',
- );
- }
- }
- }
- return $result;
- }
- function module_save_switch($module_name, $uniacid = 0, $version_id = 0) {
- global $_W, $_GPC;
- if (empty($_GPC['__switch'])) {
- $_GPC['__switch'] = random(5);
- }
- $cache_key = cache_system_key(CACHE_KEY_ACCOUNT_SWITCH, $_GPC['__switch']);
- $cache_lastaccount = cache_load($cache_key);
- if (empty($cache_lastaccount)) {
- $cache_lastaccount = array(
- $module_name => array(
- 'module_name' => $module_name,
- 'uniacid' => $uniacid,
- 'version_id' => $version_id
- )
- );
- } else {
- $cache_lastaccount[$module_name] = array(
- 'module_name' => $module_name,
- 'uniacid' => $uniacid,
- 'version_id' => $version_id
- );
- }
- cache_write($cache_key, $cache_lastaccount);
- isetcookie('__switch', $_GPC['__switch'], 7 * 86400);
- return true;
- }
- function module_last_switch($module_name) {
- global $_GPC;
- $module_name = trim($module_name);
- if (empty($module_name)) {
- return array();
- }
- $cache_key = cache_system_key(CACHE_KEY_ACCOUNT_SWITCH, $_GPC['__switch']);
- $cache_lastaccount = (array)cache_load($cache_key);
- return $cache_lastaccount[$module_name];
- }
- function module_clerk_info($module_name) {
- global $_W;
- $user_permissions = array();
- $module_name = trim($module_name);
- if (empty($module_name)) {
- return $user_permissions;
- }
- $params = array(
- ':role' => ACCOUNT_MANAGE_NAME_CLERK,
- ':type' => $module_name,
- ':uniacid' => $_W['uniacid']
- );
- $sql = "SELECT u.uid, p.permission FROM " . tablename('uni_account_users') . " u," . tablename('users_permission') . " p WHERE u.uid = p.uid AND u.uniacid = p.uniacid AND u.role = :role AND p.type = :type AND u.uniacid = :uniacid";
- $user_permissions = pdo_fetchall($sql, $params, 'uid');
- if (!empty($user_permissions)) {
- foreach ($user_permissions as $key => $value) {
- $user_permissions[$key]['user_info'] = user_single($value['uid']);
- }
- }
- return $user_permissions;
- }
- function module_rank_top($module_name) {
- global $_W;
- $result = table('module')->moduleSetRankTop($module_name);
- return empty($result) ? true : false;
- }
|