-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathinit.cls.php
executable file
·178 lines (159 loc) · 4.62 KB
/
init.cls.php
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
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
if (DEBUG) {
ini_set('display_errors', 1);
error_reporting(E_ALL ^ E_NOTICE);
} else {
ini_set('display_errors', 0);
error_reporting(0);
}
class ginkgo
{
public $G = [];
public $L = [];
public $I = ['app' => [], 'core' => []];
public $app;
public $defaultApp = 'core';
//对象工厂
public function __construct()
{
include PEPATH.'/lib/config.inc.php';
header('P3P: CP=CAO PSA OUR');
header('Content-Type: text/html; charset='.HE);
ini_set('date.timezone', 'Asia/Shanghai');
date_default_timezone_set('Etc/GMT-8');
}
/**
* @param $G
* @param null $app
*
* @return static
*/
public function make($G, $app = null)
{
if ($app) {
return $this->load($G, $app);
}
if (!isset($this->G[$G])) {
if (file_exists(PEPATH.'/lib/'.$G.'.cls.php')) {
include_once PEPATH.'/lib/'.$G.'.cls.php';
} else {
return false;
}
$this->G[$G] = new $G($this);
if (method_exists($this->G[$G], '_init')) {
$this->G[$G]->_init();
}
}
return $this->G[$G];
}
//加载对象类文件并生成对象
/**
* @param $G
* @param null $app
*
* @return static
*/
public function load($G, $app)
{
if (!$app) {
return false;
}
$o = $G.'_'.$app;
if (!isset($this->L[$app][$o])) {
$fl = PEPATH.'/app/'.$app.'/cls/'.$G.'.cls.php';
if (file_exists($fl)) {
include $fl;
} else {
return false;
}
$this->L[$app][$o] = new $o($this);
if (method_exists($this->L[$app][$o], '_init')) {
$this->L[$app][$o]->_init();
}
}
return $this->L[$app][$o];
}
//执行页面
public function run()
{
$ev = $this->make('ev');
$app = $ev->url(0);
$this->app = $app;
$this->module = $module = $ev->url(1);
$this->method = $method = $ev->url(2);
/*
if (USEWX && $ev->isWeixin()) {
if (!$_SESSION['openid']) {
$wxpay = $this->make('wxpay');
$openid = $wxpay->getwxopenid();
}
$this->user = $this->make('user','user');
$this->session = $this->make('session');
$_user = $this->session->getSessionUser();
if(!$_user['sessionuserid'])
{
$r = $this->user->autoLoginWxUser($_SESSION['openid']);
if($r)
{
header("location:index.php?".$this->defaultApp.'-'.$this->module.'&userhash='.$ev->get('userhash'));
exit;
}
}
}
*/
if (!$app) {
$this->app = $app = $this->defaultApp;
}
if (!$module) {
$this->module = $module = 'app';
}
if (!$method) {
$this->method = $method = 'index';
}
include PEPATH.'/app/'.$app.'/'.$module.'.php';
$modulefile = PEPATH.'/app/'.$app.'/controller/'.$method.'.'.$module.'.php';
if (file_exists($modulefile)) {
include $modulefile;
$tpl = $this->make('tpl');
$tpl->assign('_app', $app);
$tpl->assign('method', $method);
$run = new action($this);
$run->display();
} else {
exit('error:Unknown app to load, the app is '.$app);
}
}
//加载语言文件
public function loadLang()
{
if (!$this->lang[$this->app]) {
include PEPATH.'/app/'.$this->app.'/lang/lang.php';
if (isset($lang)) {
$this->lang[$this->app] = $lang;
}
}
}
public function R($message)
{
$ev = $this->make('ev');
if ($ev->get('userhash')) {
exit(json_encode($message));
}
if ('forward' == $message['callbackType']) {
if ($message['forwardUrl']) {
exit("<script>window.location = '{$message['forwardUrl']}';</script>");
}
exit("<script>window.location = document.referrer+'&'+Math.random();</script>");
}
exit("<script>window.location = document.referrer+'&'+Math.random();</script>");
}
}