BaseAction.class.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. <?php
  2. /**
  3. *
  4. * Base (前台公共模块)
  5. *
  6. */
  7. if(!defined("Ainaphp")) exit("Access Denied");
  8. class BaseAction extends Action
  9. {
  10. protected $Config ,$sysConfig,$categorys,$module,$moduleid,$mod,$dao,$Type,$Role,$_userid,$_groupid,$_email,$_username ,$forward ,$user_menu,$Lang,$member_config;
  11. public function _initialize() {
  12. $this->sysConfig = F('sys.config');
  13. $this->module = F('Module');
  14. $this->Role = F('Role');
  15. $this->Type =F('Type');
  16. $this->mod= F('Mod');
  17. $this->moduleid=$this->mod[MODULE_NAME];
  18. if(APP_LANG){
  19. $this->Lang = F('Lang');
  20. $this->assign('Lang',$this->Lang);
  21. if(get_safe_replace($_GET['l'])){
  22. if(!$this->Lang[$_GET['l']]['status'])$this->error ( L ( 'NO_LANG' ) );
  23. $lang=$_GET['l'];
  24. }else{
  25. $lang=$this->sysConfig['DEFAULT_LANG'];
  26. }
  27. define('LANG_NAME', $lang);
  28. define('LANG_ID', $this->Lang[$lang]['id']);
  29. $this->categorys = F('Category_'.$lang);
  30. $this->Config = F('Config_'.$lang);
  31. $this->assign('l',$lang);
  32. $this->assign('langid',LANG_ID);
  33. $T = F('config_'.$lang,'', APP_PATH.'Tpl/Home/'.$this->sysConfig['DEFAULT_THEME'].'/');
  34. C('TMPL_CACHFILE_SUFFIX','_'.$lang.'.php');
  35. cookie('think_language',$lang);
  36. }else{
  37. $T = F('config_'.$this->sysConfig['DEFAULT_LANG'],'', APP_PATH.'Tpl/Home/'.$this->sysConfig['DEFAULT_THEME'].'/');
  38. $this->categorys = F('Category');
  39. $this->Config = F('Config');
  40. cookie('think_language',$this->sysConfig['DEFAULT_LANG']);
  41. }
  42. $this->assign('T',$T);
  43. $this->assign($this->Config);
  44. $this->assign('Role',$this->Role);
  45. $this->assign('Type',$this->Type);
  46. $this->assign('Module',$this->module);
  47. $this->assign('Categorys',$this->categorys);
  48. import("@.ORG.Form");
  49. $this->assign ( 'form',new Form());
  50. C('HOME_ISHTML',$this->sysConfig['HOME_ISHTML']);
  51. C('PAGE_LISTROWS',$this->sysConfig['PAGE_LISTROWS']);
  52. C('URL_M',$this->sysConfig['URL_MODEL']);
  53. C('URL_M_PATHINFO_DEPR',$this->sysConfig['URL_PATHINFO_DEPR']);
  54. C('URL_M_HTML_SUFFIX',$this->sysConfig['URL_HTML_SUFFIX']);
  55. C('URL_LANG',$this->sysConfig['DEFAULT_LANG']);
  56. C('DEFAULT_THEME_NAME',$this->sysConfig['DEFAULT_THEME']);
  57. import("@.ORG.Online");
  58. $session = new Online();
  59. if(cookie('auth')){
  60. $yourphp_auth_key = sysmd5($this->sysConfig['ADMIN_ACCESS'].$_SERVER['HTTP_USER_AGENT']);
  61. list($userid,$groupid, $password) = explode("-", authcode(cookie('auth'), 'DECODE', $yourphp_auth_key));
  62. $this->_userid = $userid;
  63. $this->_username = cookie('username');
  64. $this->_groupid = $groupid;
  65. $this->_email = cookie('email');
  66. }else{
  67. $this->_groupid = cookie('groupid') ? cookie('groupid') : 4;
  68. $this->_userid =0;
  69. }
  70. foreach((array)$this->module as $r){
  71. if($r['issearch'])$search_module[$r['name']] = L($r['name']);
  72. if($r['ispost'] && (in_array($this->_groupid,explode(',',$r['postgroup']))))$this->user_menu[$r['id']]=$r;
  73. }
  74. if(GROUP_NAME=='User'){
  75. $langext = $lang ? '_'.$lang : '';
  76. $this->member_config=F('member.config'.$langext);
  77. $this->assign('member_config',$this->member_config);
  78. $this->assign('user_menu',$this->user_menu);
  79. if($this->_groupid=='5' && MODULE_NAME!='Login'){
  80. $this->assign('jumpUrl',URL('User-Login/emailcheck'));
  81. $this->assign('waitSecond',3);
  82. $this->success(L('no_regcheckemail'));
  83. exit;
  84. }
  85. $this->assign('header',TMPL_PATH.'Home/'.THEME_NAME.'/Home_header.html');
  86. }
  87. if($_GET['forward'] || $_POST['forward']){
  88. $this->forward = get_safe_replace($_GET['forward'].$_POST['forward']);
  89. }else{
  90. if(MODULE_NAME!='Register' || MODULE_NAME!='Login' )
  91. $this->forward =isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $this->Config['site_url'];
  92. }
  93. $this->assign('forward',$this->forward);
  94. $this->assign('search_module',$search_module);
  95. $this->assign('module_name',MODULE_NAME);
  96. $this->assign('group_name',GROUP_NAME);
  97. $this->assign('action_name',ACTION_NAME);
  98. }
  99. public function index($catid='',$module='')
  100. {
  101. $this->Urlrule =F('Urlrule');
  102. if(empty($catid)) $catid = intval($_REQUEST['id']);
  103. $p= max(intval($_REQUEST[C('VAR_PAGE')]),1);
  104. if($catid){
  105. $cat = $this->categorys[$catid];
  106. $bcid = explode(",",$cat['arrparentid']);
  107. $bcid = $bcid[1];
  108. if($bcid == '') $bcid=intval($catid);
  109. if(empty($module))$module=$cat['module'];
  110. $this->assign('module_name',$module);
  111. unset($cat['id']);
  112. $this->assign($cat);
  113. $cat['id']=$catid;
  114. $this->assign('catid',$catid);
  115. $this->assign('bcid',$bcid);
  116. }
  117. if($cat['readgroup'] && $this->_groupid!=1 && !in_array($this->_groupid,explode(',',$cat['readgroup']))){$this->assign('jumpUrl',URL('User-Login/index'));$this->error (L('NO_READ'));}
  118. $fields = F($this->mod[$module].'_Field');
  119. foreach($fields as $key=>$r){
  120. $fields[$key]['setup'] =string2array($fields[$key]['setup']);
  121. }
  122. $this->assign ( 'fields', $fields);
  123. $seo_title = $cat['title'] ? $cat['title'] : $cat['catname'];
  124. $this->assign ('seo_title',$seo_title);
  125. $this->assign ('seo_keywords',$cat['keywords']);
  126. $this->assign ('seo_description',$cat['description']);
  127. if($module=='Guestbook'){
  128. $where['status']=array('eq',1);
  129. $this->dao= M($module);
  130. $count = $this->dao->where($where)->count();
  131. if($count){
  132. import ( "@.ORG.Page_home" );
  133. $listRows = !empty($cat['pagesize']) ? $cat['pagesize'] : C('PAGE_LISTROWS');
  134. $page = new Page_home ( $count, $listRows );
  135. $page->urlrule = geturl($cat,'');
  136. $pages = $page->show();
  137. $field = $this->module[$cat['moduleid']]['listfields'];
  138. $field = $field ? $field : '*';
  139. $list = $this->dao->field($field)->where($where)->order('listorder desc,id desc')->limit($page->firstRow . ',' . $page->listRows)->select();
  140. $this->assign('pages',$pages);
  141. $this->assign('list',$list);
  142. }
  143. $template = $cat['module']=='Guestbook' && $cat['template_list'] ? $cat['template_list'] : 'index';
  144. $this->display(THEME_PATH.$module.'_'.$template.'.html');
  145. }elseif($module=='Page'){
  146. $modle=M('Page');
  147. $data = $modle->find($catid);
  148. unset($data['id']);
  149. //分页
  150. $CONTENT_POS = strpos($data['content'], '[page]');
  151. if($CONTENT_POS !== false) {
  152. $urlrule = geturl($cat,'',$this->Urlrule);
  153. $urlrule[0] = urldecode($urlrule[0]);
  154. $urlrule[1] = urldecode($urlrule[1]);
  155. $contents = array_filter(explode('[page]',$data['content']));
  156. $pagenumber = count($contents);
  157. for($i=1; $i<=$pagenumber; $i++) {
  158. $pageurls[$i] = str_replace('{$page}',$i,$urlrule);
  159. }
  160. $pages = content_pages($pagenumber,$p, $pageurls);
  161. //判断[page]出现的位置
  162. if($CONTENT_POS<7) {
  163. $data['content'] = $contents[$p];
  164. } else {
  165. $data['content'] = $contents[$p-1];
  166. }
  167. $this->assign ('pages',$pages);
  168. }
  169. $template = $cat['template_list'] ? $cat['template_list'] : 'index' ;
  170. $this->assign ($data);
  171. $this->display(THEME_PATH.$module.'_'.$template.'.html');
  172. }else{
  173. if($catid){
  174. $seo_title = $cat['title'] ? $cat['title'] : $cat['catname'];
  175. $this->assign ('seo_title',$seo_title);
  176. $this->assign ('seo_keywords',$cat['keywords']);
  177. $this->assign ('seo_description',$cat['description']);
  178. $where = " status=1 ";
  179. if($cat['child']){
  180. $where .= " and catid in(".$cat['arrchildid'].")";
  181. }else{
  182. $where .= " and catid=".$catid;
  183. }
  184. $chengshi = $_GET['chengshi'];
  185. $app = $_GET['app'];
  186. $wangzhan = $_GET['wangzhan'];
  187. $xiaochengxu = $_GET['xiaochengxu'];
  188. if($module == "Aticle" && $chengshi){
  189. $where .=" and chengshi = {$chengshi}";
  190. }
  191. if($module == "Aticle" && $app){
  192. $where .=" and app = {$app}";
  193. }
  194. if($module == "Aticle" && $wangzhan){
  195. $where .=" and wangzhan = {$wangzhan}";
  196. }
  197. if($module == "Aticle" && $xiaochengxu){
  198. $where .=" and xiaochengxu = {$xiaochengxu}";
  199. }
  200. if(empty($cat['listtype'])){
  201. $this->dao= M($module);
  202. $count = $this->dao->where($where)->count();
  203. if($count){
  204. import ( "@.ORG.Page_home" );
  205. $listRows = !empty($cat['pagesize']) ? $cat['pagesize'] : C('PAGE_LISTROWS');
  206. $page = new Page_home ( $count, $listRows );
  207. $page->urlrule = geturl($cat,'',$this->Urlrule);
  208. $pages = $page->show();
  209. $field = $this->module[$this->mod[$module]]['listfields'];
  210. $field = $field ? $field : 'id,catid,userid,url,username,title,title_style,keywords,description,thumb,createtime,hits';
  211. $list = $this->dao->field($field)->where($where)->order('listorder desc,id desc')->limit($page->firstRow . ',' . $page->listRows)->select();
  212. $this->assign('pages',$pages);
  213. $this->assign('list',$list);
  214. }
  215. $template_r = 'list';
  216. }else{
  217. $template_r = 'index';
  218. }
  219. }else{
  220. $template_r = 'list';
  221. }
  222. $template = $cat['template_list'] ? $cat['template_list'] : $template_r;
  223. $this->display($module.':'.$template);
  224. }
  225. }
  226. public function show($id='',$module='')
  227. {
  228. $this->Urlrule =F('Urlrule');
  229. $p= max(intval($_REQUEST[C('VAR_PAGE')]),1);
  230. $id = $id ? $id : intval($_REQUEST['id']);
  231. $module = $module ? $module : MODULE_NAME;
  232. $this->assign('module_name',$module);
  233. $this->dao= M($module);;
  234. $data = $this->dao->find($id);
  235. $catid = $data['catid'];
  236. $cat = $this->categorys[$data['catid']];
  237. if(empty($cat['ishtml']))$this->dao->where("id=".$id)->setInc('hits'); //添加点击次数
  238. $bcid = explode(",",$cat['arrparentid']);
  239. $bcid = $bcid[1];
  240. if($bcid == '') $bcid=intval($catid);
  241. if($data['readgroup']){
  242. if($this->_groupid!=1 && !in_array($this->_groupid,explode(',',$data['readgroup'])) )$noread=1;
  243. }elseif($cat['readgroup']){
  244. if($this->_groupid!=1 && !in_array($this->_groupid,explode(',',$cat['readgroup'])) )$noread=1;
  245. }
  246. if($noread==1){$this->assign('jumpUrl',URL('User-Login/index'));$this->error (L('NO_READ'));}
  247. $chargepoint = $data['readpoint'] ? $data['readpoint'] : $cat['chargepoint'];
  248. if($chargepoint && $data['userid'] !=$this->_userid){
  249. $user = M('User');
  250. $userdata =$user->find($this->_userid);
  251. if($cat['paytype']==1 && $userdata['point']>=$chargepoint){
  252. $chargepointok = $user->where("id=".$this->_userid)->setDec('point',$chargepoint);
  253. }elseif($cat['paytype']==2 && $userdata['amount']>=$chargepoint){
  254. $chargepointok = $user->where("id=".$this->_userid)->setDec('amount',$chargepoint);
  255. }else{
  256. $this->error (L('NO_READ'));
  257. }
  258. }
  259. $seo_title = $data['title'].'-'.$cat['catname'];
  260. $this->assign ('seo_title',$seo_title);
  261. $this->assign ('seo_keywords',$data['keywords']);
  262. $this->assign ('seo_description',$data['description']);
  263. $this->assign ( 'fields', F($cat['moduleid'].'_Field') );
  264. $fields = F($this->mod[$module].'_Field');
  265. foreach($data as $key=>$c_d){
  266. $setup='';
  267. $fields[$key]['setup'] =$setup=string2array($fields[$key]['setup']);
  268. if($setup['fieldtype']=='varchar' && $fields[$key]['type']!='text'){
  269. $data[$key.'_old_val'] =$data[$key];
  270. $data[$key]=fieldoption($fields[$key],$data[$key]);
  271. }elseif($fields[$key]['type']=='images' || $fields[$key]['type']=='files'){
  272. if(!empty($data[$key])){
  273. $p_data=explode(':::',$data[$key]);
  274. $data[$key]=array();
  275. foreach($p_data as $k=>$res){
  276. $p_data_arr=explode('|',$res);
  277. $data[$key][$k]['filepath'] = $p_data_arr[0];
  278. $data[$key][$k]['filename'] = $p_data_arr[1];
  279. }
  280. unset($p_data);
  281. unset($p_data_arr);
  282. }
  283. }
  284. unset($setup);
  285. }
  286. $this->assign('fields',$fields);
  287. //手动分页
  288. $CONTENT_POS = strpos($data['content'], '[page]');
  289. if($CONTENT_POS !== false) {
  290. $urlrule = geturl($cat,$data,$this->Urlrule);
  291. $urlrule = str_replace('%7B%24page%7D','{$page}',$urlrule);
  292. $contents = array_filter(explode('[page]',$data['content']));
  293. $pagenumber = count($contents);
  294. for($i=1; $i<=$pagenumber; $i++) {
  295. $pageurls[$i] = str_replace('{$page}',$i,$urlrule);
  296. }
  297. $pages = content_pages($pagenumber,$p, $pageurls);
  298. //判断[page]出现的位置是否在文章开始
  299. if($CONTENT_POS<7) {
  300. $data['content'] = $contents[$p];
  301. } else {
  302. $data['content'] = $contents[$p-1];
  303. }
  304. $this->assign ('pages',$pages);
  305. }
  306. if(!empty($data['template'])){
  307. $template = $data['template'];
  308. }elseif(!empty($cat['template_show'])){
  309. $template = $cat['template_show'];
  310. }else{
  311. $template = 'show';
  312. }
  313. $this->assign('catid',$catid);
  314. $this->assign ($cat);
  315. $this->assign('bcid',$bcid);
  316. $this->assign ($data);
  317. $this->display($module.':'.$template);
  318. }
  319. public function down()
  320. {
  321. $module = $module ? $module : MODULE_NAME;
  322. $id = $id ? $id : intval($_REQUEST['id']);
  323. $this->dao= M($module);
  324. $filepath = $this->dao->where("id=".$id)->getField('file');
  325. $this->dao->where("id=".$id)->setInc('downs');
  326. if(strpos($filepath, ':/')) {
  327. header("Location: $filepath");
  328. } else {
  329. $filepath = '.'.$filepath;
  330. if(!$filename) $filename = basename($filepath);
  331. $useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
  332. if(strpos($useragent, 'msie ') !== false) $filename = rawurlencode($filename);
  333. $filetype = strtolower(trim(substr(strrchr($filename, '.'), 1, 10)));
  334. $filesize = sprintf("%u", filesize($filepath));
  335. if(ob_get_length() !== false) @ob_end_clean();
  336. header('Pragma: public');
  337. header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
  338. header('Cache-Control: no-store, no-cache, must-revalidate');
  339. header('Cache-Control: pre-check=0, post-check=0, max-age=0');
  340. header('Content-Transfer-Encoding: binary');
  341. header('Content-Encoding: none');
  342. header('Content-type: '.$filetype);
  343. header('Content-Disposition: attachment; filename="'.$filename.'"');
  344. header('Content-length: '.$filesize);
  345. readfile($filepath);
  346. }
  347. exit;
  348. }
  349. public function hits()
  350. {
  351. $module = $module ? $module : MODULE_NAME;
  352. $id = $id ? $id : intval($_REQUEST['id']);
  353. $this->dao= M($module);
  354. $this->dao->where("id=".$id)->setInc('hits');
  355. if($module=='Download'){
  356. $r = $this->dao->find($id);
  357. echo '$("#hits").html('.$r['hits'].');$("#downs").html('.$r['downs'].');';
  358. }else{
  359. $hits = $this->dao->where("id=".$id)->getField('hits');
  360. echo '$("#hits").html('.$hits.');';
  361. }
  362. exit;
  363. }
  364. public function verify()
  365. {
  366. header('Content-type: image/jpeg');
  367. $type = isset($_GET['type'])? get_safe_replace($_GET['type']):'jpeg';
  368. import("@.ORG.Image");
  369. Image::buildImageVerify(4,1,$type);
  370. }
  371. }
  372. ?>