当前位置:首页 > CMS教程 > phpcms > 列表

PHPCMS广告模块详细分析——广告的生成

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-22 16:20:53 浏览: 评论:0 

上周班上的小范同学问我广告模块怎么设计,我说你去参考phpcms啊,他上面的广告模块设计的很不错呢,那么,就让我们开始吧.

PHPCMS广告模块详细分析——广告的生成.

一、功能

我们首先从功能开始,这里用的是最新下载的 phpcms_v9.5.2_UTF8,有兴趣的同学可以下载下来.

跳过安装步骤,我们进入后台,直接看广告模块.

广告位列表

广告列表

广告统计

那么,我们就很清楚phpcms广告模块的功能了.

每个广告位最多显示一个广告,但是可以设置多个广告进行时间排序的播放,每一个广告都会有自己的统计信息,统计点击量和显示量。

二、数据库分析

让我们打开phpcms的数据库,分析下数据是怎么存储的。

打开数据库,我们会发现三个名字中带有poser的表,没错!这(至少)三个表就是负责存储广告相关数据的。

广告位 poster_space

广告 poster

广告浏览IP统计 poster_201312

这样的话,数据统计也是很明确的啦!

poster_space表中存储着广告位,poster中存储每条广告的信息,包含统计信息的点击量,poster_201312存放着2013年12月的广告IP统计,因为每个用户的IP都不一样,数据量会非常大,所以要分月存放。

三,代码分析

上面的内容都是铺垫,对于程序员们来说,源代码才是真刀实枪.

上码!

广告模块存放于 phpcms\modules\poster ,是作为一个phpcms的模块的存在。

我们按流程分析,按照 广告位->广告->前台调用 这个顺序,把源代码撸一遍!

1.space.php

先贴个几个图

广告模版

  1. <?php   
  2.    
  3. /**  
  4.  * 这里是小雨的注释  
  5.  *  
  6.  * 广告模块的代码量其实不大,也就不到300行,除去官方注释和空行之外也就没有多少了。  
  7.  *  
  8.  */   
  9. defined('IN_PHPCMS'or exit('No permission resources.');   
  10. pc_base::load_app_class('admin''admin', 0);   
  11. pc_base::load_sys_class('form''', 0);   
  12.    
  13. /**  
  14.  * 这里是小雨的注释  
  15.  *  
  16.  * 这里继承了admin类,为的是不允许前台调用  
  17.  *  
  18.  * 写这个注释是为了和后面的index.pphp进行区分  
  19.  */   
  20. class space extends admin {   
  21.    
  22.     private $M$db;   
  23.    
  24.     /**  
  25.      * 这里是小雨的注释  
  26.      *  
  27.      * 构造函数,因为phpcms的多站点管理,所以在构造函数中获取了当前站点的id并放入M中,方便下面的方法调用。  
  28.      */   
  29.     function __construct() {   
  30.         parent::__construct();   
  31.         $setting = new_html_special_chars(getcache('poster''commons'));   
  32.         $this->M = $setting[$this->get_siteid()];   
  33.         $this->db = pc_base::load_model('poster_space_model');   
  34.     }   
  35.    
  36.     public function init() {   
  37.         $TYPES = $this->template_type();   
  38.         $page = max(intval($_GET['page']), 1);   
  39.         $infos = $this->db->listinfo(array('siteid' => $this->get_siteid()), '`spaceid`'$page);   
  40.         $pages = $this->db->pages;   
  41.         $big_menu = array('javascript:window.top.art.dialog({id:\'add\',iframe:\'?m=poster&c=space&a=add\', title:\'' . L('add_space') . '\', width:\'540\', height:\'320\'}, function(){var d = window.top.art.dialog({id:\'add\'}).data.iframe;var form = d.document.getElementById(\'dosubmit\');form.click();return false;}, function(){window.top.art.dialog({id:\'add\'}).close()});void(0);', L('add_space'));   
  42.         include $this->admin_tpl('space_list');   
  43.     }   
  44.    
  45.     /**  
  46.      * 添加广告版块  
  47.      */   
  48.     public function add() {   
  49.         if (isset($_POST['dosubmit'])) {   
  50.             $space = $this->check($_POST['space']);   
  51.             $space['setting'] = array2string($_POST['setting']);   
  52.             $space['siteid'] = $this->get_siteid();   
  53.             $spaceid = $this->db->insert($space, true);   
  54.             if ($spaceid) {   
  55.                 if ($space['type'] == 'code') {   
  56.                     $path = '{show_ad(' . $space['siteid'] . ', ' . $spaceid . ')}';   
  57.                 } else {   
  58.                     $path = 'poster_js/' . $spaceid . '.js';   
  59.                 }   
  60.                 $this->db->update(array('path' => $path), array('siteid' => $this->get_siteid(), 'spaceid' => $spaceid));   
  61.                 showmessage(L('added_successful'), '?m=poster&c=space''''add');   
  62.             }   
  63.         } else {   
  64.             $TYPES = $this->template_type();   
  65.             /**  
  66.              * 这里是小雨的注释  
  67.              *  
  68.              * 没错!这里是添加广告版位的控制器,那么我们在上面的图中看到的广告位的下拉菜单来自哪里呢  
  69.              * 让我们继续分析下面的函数 getcache  
  70.              */   
  71.             $poster_template = getcache('poster_template_' . $this->get_siteid(), 'commons');   
  72.             $show_header = $show_validator = true;   
  73.             include $this->admin_tpl('space_add');   
  74.         }   
  75.     }   
  76.    
  77.     /**  
  78.      * 编辑广告版位  
  79.      */   
  80.     public function edit() {   
  81.         $_GET['spaceid'] = intval($_GET['spaceid']);   
  82.         if (!$_GET['spaceid'])   
  83.             showmessage(L('illegal_operation'), HTTP_REFERER);   
  84.         if (isset($_POST['dosubmit'])) {   
  85.             $space = $this->check($_POST['space']);   
  86.             $space['setting'] = array2string($_POST['setting']);   
  87.             /**  
  88.              * 这里是小雨的注释  
  89.              *  
  90.              * 修改提交的时候,通过判断表单中的广告位类型,写入了不同的值到了路径这个参数  
  91.              */   
  92.             if ($space['type'] == 'code') {   
  93.                 $space['path'] = '{show_ad(' . $this->get_siteid() . ', ' . $_GET['spaceid'] . ')}';   
  94.             } else {   
  95.                 $space['path'] = 'poster_js/' . $_GET['spaceid'] . '.js';   
  96.             }   
  97.             if (isset($_POST['old_type']) && $_POST['old_type'] != $space['type']) {   
  98.                 $poster_db = pc_base::load_model('poster_model');   
  99.                 $poster_db->delete(array('spaceid' => $_GET['spaceid']));   
  100.                 $space['items'] = 0;   
  101.             }   
  102.             if ($this->db->update($spacearray('spaceid' => $_GET['spaceid'])))   
  103.                 showmessage(L('edited_successful'), '?m=poster&c=space''''testIframe' . $_GET['spaceid']);   
  104.         } else {   
  105.             $info = $this->db->get_one(array('spaceid' => $_GET['spaceid']));   
  106.             /**  
  107.              * 这里是小雨的注释  
  108.              *  
  109.              * 修改的时候将存入数据库的 setting字段转化为数组  
  110.              */   
  111.             $setting = string2array($info['setting']);   
  112.             $TYPES = $this->template_type();   
  113.             /**  
  114.              * 这里是小雨的注释  
  115.              *  
  116.              * 拿到了广告模版的缓存,注意,是缓存,也就是存在原始文件,因为在上面的数据库中并没有存储模版的信息  
  117.              */   
  118.             $poster_template = getcache('poster_template_' . $this->get_siteid(), 'commons');   
  119.             $show_header = $show_validator = true;   
  120.             include $this->admin_tpl('space_edit');   
  121.         }   
  122.     }   
  123.    
  124.     /**  
  125.      * 广告版位调用代码  
  126.      */   
  127.     public function public_call() {   
  128.         $_GET['sid'] = intval($_GET['sid']);   
  129.         if (!$_GET['sid'])   
  130.             showmessage(L('illegal_action'), HTTP_REFERER, '''call');   
  131.         $r = $this->db->get_one(array('spaceid' => $_GET['sid'], 'siteid' => $this->get_siteid()));   
  132.         include $this->admin_tpl('space_call');   
  133.     }   
  134.    
  135.     /**  
  136.      * 广告预览  
  137.      */   
  138.     public function public_preview() {   
  139.         if (is_numeric($_GET['spaceid'])) {   
  140.             $_GET['spaceid'] = intval($_GET['spaceid']);   
  141.             $r = $this->db->get_one(array('spaceid' => $_GET['spaceid'], 'siteid' => $this->get_siteid()));   
  142.             $scheme = $_SERVER['SERVER_PORT'] == '443' ? 'https://' : 'http://';   
  143.             /**  
  144.              * 这里是小雨的注释  
  145.              *  
  146.              * 在这里,同样的对 广告位 类型是 代码 的进行了特殊待遇  
  147.              *  
  148.              */   
  149.             if ($r['type'] == 'code') {   
  150.                 $db = pc_base::load_model('poster_model');   
  151.                 $rs = $db->get_one(array('spaceid' => $r['spaceid'], 'siteid' => $this->get_siteid()), 'setting''`id` ASC');   
  152.                 if ($rs['setting']) {   
  153.                     $d = string2array($rs['setting']);   
  154.                     $data = $d['code'];   
  155.                 }   
  156.             } else {   
  157.                 $path = APP_PATH . 'caches/' . $r['path'];   
  158.             }   
  159.             include $this->admin_tpl('space_preview');   
  160.         }   
  161.     }   
  162.    
  163.     private function template_type() {   
  164.         pc_base::load_app_func('global''poster');   
  165.         return get_types();   
  166.     }   
  167.    
  168.     /**  
  169.      * 删除广告版位  
  170.      * @param   intval  $sid    广告版位的ID,当批量删除时系统会递归删除  
  171.      */   
  172.     public function delete() {   
  173.         if ((!isset($_GET['spaceid']) || emptyempty($_GET['spaceid'])) && (!isset($_POST['spaceid']) || emptyempty($_POST['spaceid']))) {   
  174.             showmessage(L('illegal_parameters'), HTTP_REFERER);   
  175.         } else {   
  176.             if (is_array($_POST['spaceid'])) {   
  177.                 array_map(array($this, _del), $_POST['spaceid']); //如果是批量操作,则递归数组   
  178.             } elseif ($_GET['spaceid']) {   
  179.                 $_GET['spaceid'] = intval($_GET['spaceid']);   
  180.                 $db = pc_base::load_model('poster_model');   
  181.                 $db->delete(array('siteid' => $this->get_siteid(), 'spaceid' => $_GET['spaceid']));   
  182.                 $this->db->delete(array('siteid' => $this->get_siteid(), 'spaceid' => $_GET['spaceid']));   
  183.             }   
  184.             showmessage(L('operation_success'), HTTP_REFERER);   
  185.         }   
  186.     }   
  187.    
  188.     /**  
  189.      * 广告位删除  
  190.      * @param intval $spaceid 专题ID  
  191.      */   
  192.     private function _del($spaceid = 0) {   
  193.         $spaceid = intval($spaceid);   
  194.         if (!$spaceid)   
  195.             return false;   
  196.         $db = pc_base::load_model('poster_model');   
  197.         $db->delete(array('siteid' => $this->get_siteid(), 'spaceid' => $spaceid));   
  198.         $this->db->delete(array('siteid' => $this->get_siteid(), 'spaceid' => $spaceid));   
  199.         return true;   
  200.     }   
  201.    
  202.     /**  
  203.      * 广告模块配置  
  204.      */   
  205.     public function setting() {   
  206.         if (isset($_POST['dosubmit'])) {   
  207.             //读取了缓存   
  208.             $setting = getcache('poster''commons');   
  209.             $setting[$this->get_siteid()] = $_POST['setting'];   
  210.             setcache('poster'$setting'commons'); //设置缓存   
  211.             $m_db = pc_base::load_model('module_model'); //调用模块数据模型  
  212.             $setting = array2string($_POST['setting']);   
  213.    
  214.             $m_db->update(array('setting' => $setting), array('module' => ROUTE_M)); //将配置信息存入数据表中   
  215.    
  216.             showmessage(L('setting_updates_successful'), HTTP_REFERER, '''setting');   
  217.         } else {   
  218.             /**  
  219.              * 这里是小雨的注释  
  220.              *  
  221.              * 注意这个函数  
  222.              * extract() 函数从数组中把变量导入到当前的符号表中  
  223.              * 也就是将构造函数中的,从缓存中取出的设置的数组直接打散作为变量  
  224.              * @ 的符号是防止报错的  
  225.              */   
  226.             @extract($this->M);   
  227.             include $this->admin_tpl('setting');   
  228.         }   
  229.     }   
  230.    
  231.     /**  
  232.      * 配置模板  
  233.      */   
  234.     public function poster_template() {   
  235.         /**  
  236.          * 这里是小雨的注释  
  237.          *  
  238.          * 这里配置了模版,也就是从文件中读取  
  239.          *  
  240.          */   
  241.         $tpl_root = pc_base::load_config('system''tpl_root');   
  242.         $templatedir = PC_PATH . $tpl_root . pc_base::load_config('system''tpl_name') . DIRECTORY_SEPARATOR . 'poster' . DIRECTORY_SEPARATOR;   
  243.         /**  
  244.          *  
  245.          * 这里的$templatedir 为 phpcms\templates/default\poster\  
  246.          *  
  247.          */   
  248.         $poster_template = getcache('poster_template_' . get_siteid(), 'commons');   
  249.         /**  
  250.          * 找到所有的html的文件,循环得到不包含扩展名的文件名,作为配置项  
  251.          */   
  252.         $templates = glob($templatedir . '*.html');   
  253.         if (is_array($templates) && !emptyempty($templates)) {   
  254.             foreach ($templates as $k => $tem) {   
  255.                 $templates[$k] = basename($tem".html");   
  256.             }   
  257.         }   
  258.         $big_menu = array('javascript:window.top.art.dialog({id:\'add\',iframe:\'?m=poster&c=space&a=add\', title:\'' . L('add_space') . '\', width:\'540\', height:\'320\'}, function(){var d = window.top.art.dialog({id:\'add\'}).data.iframe;var form = d.document.getElementById(\'dosubmit\');form.click();return false;}, function(){window.top.art.dialog({id:\'add\'}).close()});void(0);', L('add_space'));   
  259.         include $this->admin_tpl('poster_template');   
  260.     }   
  261.    
  262.     /**  
  263.      * 删除模板配置  
  264.      */   
  265.     public function public_tempate_del() {   
  266.         if (!isset($_GET['id']))   
  267.             showmessage(L('illegal_parameters'), HTTP_REFERER);   
  268.         $siteid = $this->get_siteid();   
  269.         $poster_template = getcache('poster_template_' . $siteid'commons');   
  270.         /**  
  271.          *  
  272.          * 这里在删除的时候只是修改了缓存文件中的,并没有修改原来的哦  
  273.          *  
  274.          */   
  275.         if ($poster_template[$_GET['id']]) {   
  276.             unset($poster_template[$_GET['id']]);   
  277.         }   
  278.         setcache('poster_template_' . $siteid$poster_template'commons');   
  279.         showmessage(L('operation_success'), HTTP_REFERER);   
  280.     }   
  281.    
  282.     /**  
  283.      * 配置模板  
  284.      *  
  285.      * 注:这里只能对 'iscore' => 0, 的模版进行设置哦  
  286.      */   
  287.     public function public_tempate_setting() {   
  288.         $siteid = $this->get_siteid();   
  289.         $poster_template = getcache('poster_template_' . $siteid'commons');   
  290.         if (isset($_POST['dosubmit'])) {   
  291.             if (is_array($_POST['info']['type']) && !emptyempty($_POST['info']['type'])) {   
  292.                 $type2name = array('images' => L('photo'), 'flash' => L('flash'), 'text' => L('title'));   
  293.                 $type = array();   
  294.                 foreach ($_POST['info']['type'as $t) {   
  295.                     if (in_array($tarray('images''flash''text'))) {   
  296.                         $type[$t] = $type2name[$t];   
  297.                     } else {   
  298.                         continue;   
  299.                     }   
  300.                 }   
  301.             }   
  302.             unset($_POST['info']['type']);   
  303.             $_POST['info']['type'] = $type;   
  304.             $poster_template[$_POST['template']] = $_POST['info'];   
  305.             /**  
  306.              *  
  307.              * 这里设置了模版的缓存,放在了  
  308.              * caches/caches_commons/caches_data/poster_template_1.cache  
  309.              * 中,特佩服phpcms的缓存  
  310.              */   
  311.             setcache('poster_template_' . $siteid$poster_template'commons');   
  312.             showmessage(L('setting_success'), '''''testIframe');   
  313.         } else {   
  314.             if (!isset($_GET['template'])) {   
  315.                 showmessage(L('illegal_parameters'));   
  316.             } else {   
  317.                 $template = $_GET['template'];   
  318.             }   
  319.             if ($poster_template[$template]) {   
  320.                 $info = $poster_template[$template];   
  321.                 if (is_array($info['type']) && !emptyempty($info['type'])) {   
  322.                     $type = array();   
  323.                     $type = array_keys($info['type']);   
  324.                     unset($info['type']);   
  325.                     $info['type'] = $type;   
  326.                 }   
  327.             }   
  328.             include $this->admin_tpl('template_setting');   
  329.         }   
  330.     }   
  331.    
  332.     /**  
  333.      * 更新js  
  334.      */   
  335.     public function create_js($page = 0) {   
  336.         $page = max(intval($_GET['page']), 1);   
  337.         if ($page == 1) {   
  338.             /**  
  339.              * 这里是小雨的注释  
  340.              *  
  341.              * 获取了当前站点下能用的广告做了数量的分页  
  342.              *  
  343.              *  
  344.              */   
  345.             $result = $this->db->get_one(array('disabled' => 0, 'siteid' => get_siteid()), 'COUNT(*) AS num');   
  346.             if ($result['num']) {   
  347.                 $total = $result['num'];   
  348.                 $pages = ceil($total / 20);   
  349.             }   
  350.         } else {   
  351.             $pages = $_GET['pages'] ? intval($_GET['pages']) : 0;   
  352.         }   
  353.         $offset = ($page - 1) * 20;   
  354.         $data = $this->db->listinfo(array('disabled' => 0, 'siteid' => get_siteid()), 'spaceid ASC'$page);   
  355.         /**  
  356.          *  
  357.          * 其实这个方法只是个套子,真正的更新js在下面  
  358.          *  
  359.          * 读取了html的类  
  360.          * 使用了html中的create_js,来更新了js  
  361.          */   
  362.         $html = pc_base::load_app_class('html');   
  363.         foreach ($data as $d) {   
  364.             if ($d['type'] != 'code') {   
  365.                 $html->create_js($d['spaceid']);   
  366.             } else {   
  367.                 continue;   
  368.             }   
  369.         }   
  370.         $page++;   
  371.         if ($page > $pages) {   
  372.             showmessage(L('update_js_success'), '?m=poster&c=space&a=init');   
  373.         } else {   
  374.             showmessage(L('update_js') . '<font style="color:red">' . ($page - 1) . '/' . $pages . '</font>''?m=poster&c=space&a=create_js&page=' . $page . '&pages=' . $pages);   
  375.         }   
  376.     }   
  377.    
  378.     /**  
  379.      * 检测版位名称是否存在  
  380.      */   
  381.     public function public_check_space() {   
  382.         if (!$_GET['name'])   
  383.             exit(0);   
  384.         if (pc_base::load_config('system''charset') == 'gbk') {   
  385.             $_GET['name'] = iconv('UTF-8''GBK'$_GET['name']);   
  386.         }   
  387.         $name = $_GET['name'];   
  388.         if ($_GET['spaceid']) {   
  389.             $spaceid = intval($_GET['spaceid']);   
  390.             $r = $this->db->get_one(array('spaceid' => $spaceid'siteid' => $this->get_siteid()));   
  391.             if ($r['name'] == $name) {   
  392.                 exit('1');   
  393.             }   
  394.         }   
  395.         $r = $this->db->get_one(array('siteid' => $this->get_siteid(), 'name' => $name), 'spaceid');   
  396.         if ($r['spaceid']) {   
  397.             exit('0');   
  398.         } else {   
  399.             exit('1');   
  400.         }   
  401.     }   
  402.    
  403.     /**  
  404.      * 检查表单数据  
  405.      * @param   Array   $data   表单传递过来的数组  
  406.      * @return Array    检查后的数组  
  407.      */   
  408.     private function check($data = array()) {   
  409.         if ($data['name'] == '')   
  410.             showmessage(L('name_plates_not_empty'));   
  411.         $info = $this->db->get_one(array('name' => $data['name'], 'siteid' => $this->get_siteid()), 'spaceid');   
  412.         if (($info['spaceid'] && $info['spaceid'] != $_GET['spaceid']) || ($info['spaceid'] && !isset($_GET['spaceid']))) {   
  413.             showmessage(L('space_exist'), HTTP_REFERER);   
  414.         }   
  415.         if ((!isset($data['width']) || $data['width'] == 0) && in_array($data['type'], array('banner''fixure''float''couplet''imagechange''imagelist'))) {   
  416.             showmessage(L('plate_width_not_empty'), HTTP_REFERER);   
  417.         } else {   
  418.             $data['width'] = intval($data['width']);   
  419.         }   
  420.         if ((!isset($data['height']) || $data['height'] == 0) && in_array($data['type'], array('banner''fixure''float''couplet''imagechange''imagelist'))) {   //phpfensi.com 
  421.             showmessage(L('plate_height_not_empty'), HTTP_REFERER);   
  422.         } else {   
  423.             $data['height'] = intval($data['height']);   
  424.         }   
  425.         $TYPES = $this->template_type();   
  426.         return $data;   
  427.     }   
  428.    
  429. }   
  430.    
  431. ?>   

这里的总结.

Tags: PHPCMS广告模块 PHPCMS广告生成

分享到: