BaseAction1.class.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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. if(empty($cat['listtype'])){
  185. $this->dao= M($module);
  186. $count = $this->dao->where($where)->count();
  187. if($count){
  188. import ( "@.ORG.Page_home" );
  189. $listRows = !empty($cat['pagesize']) ? $cat['pagesize'] : C('PAGE_LISTROWS');
  190. $page = new Page_home ( $count, $listRows );
  191. $page->urlrule = geturl($cat,'',$this->Urlrule);
  192. $pages = $page->show();
  193. $field = $this->module[$this->mod[$module]]['listfields'];
  194. $field = $field ? $field : 'id,catid,userid,url,username,title,title_style,keywords,description,thumb,createtime,hits';
  195. $list = $this->dao->field($field)->where($where)->order('listorder desc,id desc')->limit($page->firstRow . ',' . $page->listRows)->select();
  196. $this->assign('pages',$pages);
  197. $this->assign('list',$list);
  198. }
  199. $template_r = 'list';
  200. }else{
  201. $template_r = 'index';
  202. }
  203. }else{
  204. $template_r = 'list';
  205. }
  206. $template = $cat['template_list'] ? $cat['template_list'] : $template_r;
  207. $this->display($module.':'.$template);
  208. }
  209. }
  210. public function show($id='',$module='')
  211. {
  212. $this->Urlrule =F('Urlrule');
  213. $p= max(intval($_REQUEST[C('VAR_PAGE')]),1);
  214. $id = $id ? $id : intval($_REQUEST['id']);
  215. $module = $module ? $module : MODULE_NAME;
  216. $this->assign('module_name',$module);
  217. $this->dao= M($module);;
  218. $data = $this->dao->find($id);
  219. $catid = $data['catid'];
  220. $cat = $this->categorys[$data['catid']];
  221. if(empty($cat['ishtml']))$this->dao->where("id=".$id)->setInc('hits'); //添加点击次数
  222. $bcid = explode(",",$cat['arrparentid']);
  223. $bcid = $bcid[1];
  224. if($bcid == '') $bcid=intval($catid);
  225. if($data['readgroup']){
  226. if($this->_groupid!=1 && !in_array($this->_groupid,explode(',',$data['readgroup'])) )$noread=1;
  227. }elseif($cat['readgroup']){
  228. if($this->_groupid!=1 && !in_array($this->_groupid,explode(',',$cat['readgroup'])) )$noread=1;
  229. }
  230. if($noread==1){$this->assign('jumpUrl',URL('User-Login/index'));$this->error (L('NO_READ'));}
  231. $chargepoint = $data['readpoint'] ? $data['readpoint'] : $cat['chargepoint'];
  232. if($chargepoint && $data['userid'] !=$this->_userid){
  233. $user = M('User');
  234. $userdata =$user->find($this->_userid);
  235. if($cat['paytype']==1 && $userdata['point']>=$chargepoint){
  236. $chargepointok = $user->where("id=".$this->_userid)->setDec('point',$chargepoint);
  237. }elseif($cat['paytype']==2 && $userdata['amount']>=$chargepoint){
  238. $chargepointok = $user->where("id=".$this->_userid)->setDec('amount',$chargepoint);
  239. }else{
  240. $this->error (L('NO_READ'));
  241. }
  242. }
  243. $seo_title = $data['title'].'-'.$cat['catname'];
  244. $this->assign ('seo_title',$seo_title);
  245. $this->assign ('seo_keywords',$data['keywords']);
  246. $this->assign ('seo_description',$data['description']);
  247. $this->assign ( 'fields', F($cat['moduleid'].'_Field') );
  248. $fields = F($this->mod[$module].'_Field');
  249. foreach($data as $key=>$c_d){
  250. $setup='';
  251. $fields[$key]['setup'] =$setup=string2array($fields[$key]['setup']);
  252. if($setup['fieldtype']=='varchar' && $fields[$key]['type']!='text'){
  253. $data[$key.'_old_val'] =$data[$key];
  254. $data[$key]=fieldoption($fields[$key],$data[$key]);
  255. }elseif($fields[$key]['type']=='images' || $fields[$key]['type']=='files'){
  256. if(!empty($data[$key])){
  257. $p_data=explode(':::',$data[$key]);
  258. $data[$key]=array();
  259. foreach($p_data as $k=>$res){
  260. $p_data_arr=explode('|',$res);
  261. $data[$key][$k]['filepath'] = $p_data_arr[0];
  262. $data[$key][$k]['filename'] = $p_data_arr[1];
  263. }
  264. unset($p_data);
  265. unset($p_data_arr);
  266. }
  267. }
  268. unset($setup);
  269. }
  270. $this->assign('fields',$fields);
  271. //手动分页
  272. $CONTENT_POS = strpos($data['content'], '[page]');
  273. if($CONTENT_POS !== false) {
  274. $urlrule = geturl($cat,$data,$this->Urlrule);
  275. $urlrule = str_replace('%7B%24page%7D','{$page}',$urlrule);
  276. $contents = array_filter(explode('[page]',$data['content']));
  277. $pagenumber = count($contents);
  278. for($i=1; $i<=$pagenumber; $i++) {
  279. $pageurls[$i] = str_replace('{$page}',$i,$urlrule);
  280. }
  281. $pages = content_pages($pagenumber,$p, $pageurls);
  282. //判断[page]出现的位置是否在文章开始
  283. if($CONTENT_POS<7) {
  284. $data['content'] = $contents[$p];
  285. } else {
  286. $data['content'] = $contents[$p-1];
  287. }
  288. $this->assign ('pages',$pages);
  289. }
  290. if(!empty($data['template'])){
  291. $template = $data['template'];
  292. }elseif(!empty($cat['template_show'])){
  293. $template = $cat['template_show'];
  294. }else{
  295. $template = 'show';
  296. }
  297. $this->assign('catid',$catid);
  298. $this->assign ($cat);
  299. $this->assign('bcid',$bcid);
  300. $this->assign ($data);
  301. $this->display($module.':'.$template);
  302. }
  303. public function down()
  304. {
  305. $module = $module ? $module : MODULE_NAME;
  306. $id = $id ? $id : intval($_REQUEST['id']);
  307. $this->dao= M($module);
  308. $filepath = $this->dao->where("id=".$id)->getField('file');
  309. $this->dao->where("id=".$id)->setInc('downs');
  310. if(strpos($filepath, ':/')) {
  311. header("Location: $filepath");
  312. } else {
  313. $filepath = '.'.$filepath;
  314. if(!$filename) $filename = basename($filepath);
  315. $useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
  316. if(strpos($useragent, 'msie ') !== false) $filename = rawurlencode($filename);
  317. $filetype = strtolower(trim(substr(strrchr($filename, '.'), 1, 10)));
  318. $filesize = sprintf("%u", filesize($filepath));
  319. if(ob_get_length() !== false) @ob_end_clean();
  320. header('Pragma: public');
  321. header('Last-Modified: '.gmdate('D, d M Y H:i:s') . ' GMT');
  322. header('Cache-Control: no-store, no-cache, must-revalidate');
  323. header('Cache-Control: pre-check=0, post-check=0, max-age=0');
  324. header('Content-Transfer-Encoding: binary');
  325. header('Content-Encoding: none');
  326. header('Content-type: '.$filetype);
  327. header('Content-Disposition: attachment; filename="'.$filename.'"');
  328. header('Content-length: '.$filesize);
  329. readfile($filepath);
  330. }
  331. exit;
  332. }
  333. public function hits()
  334. {
  335. $module = $module ? $module : MODULE_NAME;
  336. $id = $id ? $id : intval($_REQUEST['id']);
  337. $this->dao= M($module);
  338. $this->dao->where("id=".$id)->setInc('hits');
  339. if($module=='Download'){
  340. $r = $this->dao->find($id);
  341. echo '$("#hits").html('.$r['hits'].');$("#downs").html('.$r['downs'].');';
  342. }else{
  343. $hits = $this->dao->where("id=".$id)->getField('hits');
  344. echo '$("#hits").html('.$hits.');';
  345. }
  346. exit;
  347. }
  348. public function verify()
  349. {
  350. header('Content-type: image/jpeg');
  351. $type = isset($_GET['type'])? get_safe_replace($_GET['type']):'jpeg';
  352. import("@.ORG.Image");
  353. Image::buildImageVerify(4,1,$type);
  354. }
  355. }
  356. ?>