bootstrap.app.inc.php
6.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?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');
load()->model('mc');
load()->model('app');
load()->model('account');
load()->model('attachment');
load()->model('module');
$_W['uniacid'] = intval($_GPC['i']);
if(empty($_W['uniacid'])) {
$_W['uniacid'] = intval($_GPC['weid']);
}
$_W['uniaccount'] = $_W['account'] = uni_fetch($_W['uniacid']);
if(empty($_W['uniaccount'])) {
header('HTTP/1.1 404 Not Found');
header("status: 404 Not Found");
exit;
}
if (!empty($_W['uniaccount']['endtime']) && TIMESTAMP > $_W['uniaccount']['endtime']) {
exit('抱歉,您的公众号服务已过期,请及时联系管理员');
}
if (app_pass_visit_limit()) {
exit('访问受限,请及时联系管理员!');
}
$_W['acid'] = $_W['uniaccount']['acid'];
$isdel_account = pdo_get('account', array('isdeleted' => 1, 'acid' => $_W['acid']));
if (!empty($isdel_account)) {
exit('指定公众号已被删除');
}
if (!empty($_W['account']['setting']['bind_domain']) && !empty($_W['account']['setting']['bind_domain']['domain']) && strpos($_W['siteroot'], $_W['account']['setting']['bind_domain']['domain']) === false) {
header('Location:' . $_W['account']['setting']['bind_domain']['domain']. $_SERVER['REQUEST_URI']);
exit;
}
$_W['session_id'] = '';
if (isset($_GPC['state']) && !empty($_GPC['state']) && strexists($_GPC['state'], 'we7sid-')) {
$pieces = explode('-', $_GPC['state']);
$_W['session_id'] = $pieces[1];
unset($pieces);
}
if (empty($_W['session_id'])) {
$_W['session_id'] = $_COOKIE[session_name()];
}
if (empty($_W['session_id'])) {
$_W['session_id'] = "{$_W['uniacid']}-" . random(20) ;
$_W['session_id'] = md5($_W['session_id']);
setcookie(session_name(), $_W['session_id']);
}
session_id($_W['session_id']);
load()->classs('wesession');
WeSession::start($_W['uniacid'], CLIENT_IP);
if (!empty($_GPC['j'])) {
$acid = intval($_GPC['j']);
$_W['account'] = account_fetch($acid);
if (is_error($_W['account'])) {
$_W['account'] = account_fetch($_W['acid']);
} else {
$_W['acid'] = $acid;
}
$_SESSION['__acid'] = $_W['acid'];
$_SESSION['__uniacid'] = $_W['uniacid'];
}
if (!empty($_SESSION['__acid']) && $_SESSION['__uniacid'] == $_W['uniacid']) {
$_W['acid'] = intval($_SESSION['__acid']);
$_W['account'] = account_fetch($_W['acid']);
}
if ((!empty($_SESSION['acid']) && $_W['acid'] != $_SESSION['acid']) ||
(!empty($_SESSION['uniacid']) && $_W['uniacid'] != $_SESSION['uniacid'])) {
$keys = array_keys($_SESSION);
foreach ($keys as $key) {
unset($_SESSION[$key]);
}
unset($keys, $key);
}
$_SESSION['acid'] = $_W['acid'];
$_SESSION['uniacid'] = $_W['uniacid'];
if (!empty($_SESSION['openid'])) {
$_W['openid'] = $_SESSION['openid'];
$_W['fans'] = mc_fansinfo($_W['openid']);
$_W['fans']['from_user'] = $_W['fans']['openid'] = $_W['openid'];
}
if (!empty($_SESSION['uid']) || (!empty($_W['fans']) && !empty($_W['fans']['uid']))) {
$uid = intval($_SESSION['uid']);
if (empty($uid)) {
$uid = $_W['fans']['uid'];
}
_mc_login(array('uid' => $uid));
unset($uid);
}
if (empty($_W['openid']) && !empty($_SESSION['oauth_openid'])) {
$_W['openid'] = $_SESSION['oauth_openid'];
$_W['fans'] = array(
'openid' => $_SESSION['oauth_openid'],
'from_user' => $_SESSION['oauth_openid'],
'follow' => 0
);
}
$unisetting = uni_setting_load();
if (empty($unisetting['oauth'])) {
$unisetting['oauth'] = uni_account_global_oauth();
}
if (!empty($unisetting['oauth']['account'])) {
$oauth = account_fetch($unisetting['oauth']['account']);
if (!empty($oauth) && $_W['account']['level'] <= $oauth['level']) {
$_W['oauth_account'] = $_W['account']['oauth'] = array(
'key' => $oauth['key'],
'secret' => $oauth['secret'],
'acid' => $oauth['acid'],
'type' => $oauth['type'],
'level' => $oauth['level'],
);
unset($oauth);
} else {
$_W['oauth_account'] = $_W['account']['oauth'] = array(
'key' => $_W['account']['key'],
'secret' => $_W['account']['secret'],
'acid' => $_W['account']['acid'],
'type' => $_W['account']['type'],
'level' => $_W['account']['level'],
);
}
} else {
$_W['oauth_account'] = $_W['account']['oauth'] = array(
'key' => $_W['account']['key'],
'secret' => $_W['account']['secret'],
'acid' => $_W['account']['acid'],
'type' => $_W['account']['type'],
'level' => $_W['account']['level'],
);
}
if($controller != 'utility') {
$_W['token'] = token();
}
if (!empty($_W['account']['oauth']) && $_W['account']['oauth']['level'] == '4' && empty($_W['isajax'])) {
if (($_W['container'] == 'wechat' && !$_GPC['logout'] && empty($_W['openid']) && ($controller != 'auth' || ($controller == 'auth' && !in_array($action, array('forward', 'oauth'))))) ||
($_W['container'] == 'wechat' && !$_GPC['logout'] && empty($_SESSION['oauth_openid']) && ($controller != 'auth'))) {
$state = 'we7sid-'.$_W['session_id'];
if (empty($_SESSION['dest_url'])) {
$_SESSION['dest_url'] = urlencode($_W['siteurl']);
}
$str = '';
if(uni_is_multi_acid()) {
$str = "&j={$_W['acid']}";
}
$oauth_type = 'snsapi_base';
if ($controller == 'entry' && !empty($_GPC['m'])) {
$module_info = module_fetch($_GPC['m']);
if ($module_info['oauth_type'] == OAUTH_TYPE_USERINFO) {
$oauth_type = 'snsapi_userinfo';
}
}
$oauth_url = uni_account_oauth_host();
$url = $oauth_url . "app/index.php?i={$_W['uniacid']}{$str}&c=auth&a=oauth&scope=" . $oauth_type;
$callback = urlencode($url);
$oauth_account = WeAccount::create($_W['account']['oauth']);
if ($oauth_type == 'snsapi_base') {
$forward = $oauth_account->getOauthCodeUrl($callback, $state);
} else {
$forward = $oauth_account->getOauthUserInfoUrl($callback, $state);
}
header('Location: ' . $forward);
exit();
}
}
$_W['account']['groupid'] = $_W['uniaccount']['groupid'];
$_W['account']['qrcode'] = tomedia('qrcode_'.$_W['acid'].'.jpg').'?time='.$_W['timestamp'];
$_W['account']['avatar'] = tomedia('headimg_'.$_W['acid'].'.jpg').'?time='.$_W['timestamp'];
if ($_W['container'] == 'wechat' && in_array($_W['account']['type'], array(ACCOUNT_TYPE_OFFCIAL_NORMAL, ACCOUNT_TYPE_OFFCIAL_AUTH, ACCOUNT_TYPE_APP_NORMAL, ACCOUNT_TYPE_APP_AUTH))) {
if (!empty($unisetting['jsauth_acid'])) {
$jsauth_acid = $unisetting['jsauth_acid'];
} else {
if ($_W['account']['level'] < 3 && !empty($unisetting['oauth']['account'])) {
$jsauth_acid = $unisetting['oauth']['account'];
} else {
$jsauth_acid = $_W['acid'];
}
}
if (!empty($jsauth_acid)) {
$account_api = WeAccount::create($jsauth_acid);
if (!empty($account_api)) {
$_W['account']['jssdkconfig'] = $account_api->getJssdkConfig();
$_W['account']['jsauth_acid'] = $jsauth_acid;
}
}
unset($jsauth_acid, $account_api);
}
$_W['attachurl'] = attachment_set_attach_url();
load()->func('compat.biz');