CodeIgniter——动态生成路由


CodeIgniter - Generate routes dynamically

我有一个带有动态导航菜单的网站。我将控制器(葡萄牙语)名称保存在数据库中,并将其翻译为英文。

我想知道是否有可能在运行时影响'route'数组,这样它就会创建这些路由并在加载页面时缓存它。

我希望我说得够清楚了,谢谢你的帮助

你可以这样做:

创建一个名为Routes的表

--
-- Table structure for table `Routes`
--
CREATE TABLE IF NOT EXISTS `Routes` (
`idRoutes` int(11) NOT NULL AUTO_INCREMENT,
`Order` int(11) NOT NULL,
`Url` varchar(250) NOT NULL,
`Url_Variable` varchar(20) NOT NULL,
`Class` text NOT NULL,
`Method` text NOT NULL,
`Variable` text NOT NULL,
`Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
   PRIMARY KEY (`idRoutes`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=67 ;

在config目录下创建一个名为pdo_db_connect.php的文件

把这个放进去,然后做相应的修改。

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
function pdo_connect(){
try{
    // Include database info
    include 'database.php';
if(!isset($db)){
    echo 'Database connection not available!';
        exit;
}   
        $dbdriver   = $db['default']['dbdriver'];//'mysql'; 
        $hostname   = $db['default']['hostname'];//'localhost';
        $database   = $db['default']['database'];//'config';
        $username   = $db['default']['username'];//'root';
        $password   = $db['default']['password'];//'password';
    //to connect
    $DB = new PDO($dbdriver.':host='.$hostname.'; dbname='.$database, $username, $password);
    return $DB;
}catch(PDOException $e) {
    echo 'Please contact Admin: '.$e->getMessage();
}
}

现在在你的路由文件中你可以这样做:

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
    // Include our PDO Connection
    include('application/config/pdo_db_connect.php');
    class dynamic_route{
        public $pdo_db = FALSE;
        public function __construct(){
        }
        private function query_routes(){
            try{
            $routes_query = $this->pdo_db->query('SELECT * FROM Routes ORDER BY `Order` ASC');
            if($routes_query){
                $return_data = array(); 
                foreach($routes_query as $row) {
                    $return_data[] = $row; 
                }
                return $return_data;
            }
            }catch(PDOException $e) {
                echo 'Please contact Admin: '.$e->getMessage();
            }
        }
        private function filter_route_data($data){
            $r_data = array();
            foreach($data as $row){
                $return_data = new stdClass;
                if(empty($row['Url_Variable']) ){
                    $return_data->url = $row['Url'];
                }else{
                    $return_data->url = $row['Url'].'/'.$row['Url_Variable'];
                }
                if(empty($row['Method']) && empty($row['Variable']) ){
                    $return_data->route = $row['Class'];
                }elseif(!empty($row['Method']) && empty($row['Variable']) ){
                    $return_data->route = $row['Class'].'/'.$row['Method'];
                }elseif(!empty($row['Method']) && !empty($row['Variable']) ){
                    $return_data->route = $row['Class'].'/'.$row['Method'].'/'.$row['Variable'];
                }
            $r_data[] = $return_data;
            }
            return $r_data;
        }
        public function get_routes(){
            $route_data = $this->query_routes();
            $return_data = $this->filter_route_data($route_data);
            return $return_data;
        }       
    }
    $dynamic_route = new dynamic_route;
    // Give dynamic route database connection
    $dynamic_route->pdo_db = pdo_connect();
    // Get the route data
    $route_data = $dynamic_route->get_routes();
    //Iterate over the routes
    foreach($route_data as $row){
        $route[$row->url] = $row->route;
    }

请记住,routes文件只是一个包含数组的PHP文件,因此,如果您想穿上"黑客"的t-shirt,您可以轻松地做一些有点脏的事情。

让你的CMS/application/web-app/fridge-monitoring-system/任何东西都有一个创建和存储数据库记录的接口。然后,无论何时保存,都要将这些内容放入application/cache/routes.php中。

最后,你只需要让你的main routes.php包含缓存版本,就可以开始了

你可以看看这里:

  • http://ellislab.com/forums/viewthread/185154/
  • http://ellislab.com/forums/viewthread/182180/

您需要以下内容。

一个像这样的控制器,它将把你的路由保存到application/cache文件夹中的一个名为"routes.php"的文件中:

public function save_routes()
        {
            // this simply returns all the pages from my database
            $routes = $this->Pages_model->get_all($this->siteid);
            // write out the PHP array to the file with help from the file helper
            if (!empty($routes)) {
                // for every page in the database, get the route using the recursive function - _get_route()
                foreach ($routes->result_array() as $route) {
                    $data[] = '$route["' . $this->_get_route($route['pageid']) . '"] = "' . "pages/index/{$route['pageid']}" . '";';
                }
                $output = "<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');'n";
                $output .= implode("'n", $data);
                $this->load->helper('file');
                write_file(APPPATH . "cache/routes.php", $output);
            }
        }

这是您需要的第二个函数。这一个和先前的一个都将进入处理页面的应用程序控制器:

// Credit to http://acairns.co.uk for this simple function he shared with me
// this will return our route based on the 'url' field of the database
// it will also check for parent pages for hierarchical urls
        private function _get_route($id)
        {
            // get the page from the db using it's id
            $page = $this->Pages_model->get_page($id);
            // if this page has a parent, prefix it with the URL of the parent -- RECURSIVE
            if ($page["parentid"] != 0)
                $prefix = $this->_get_route($page["parentid"]) . "/" . $page['page_name'];
            else
                $prefix = $page['page_name'];
            return $prefix;
        }

在你的Pages_model中,你需要这样做:

function get_page($pageid) {
        $this->db->select('*')
            ->from('pages')
            ->where('pageid', $pageid);
        $query = $this->db->get();
        $row = $query->row_array();
        $num = $query->num_rows();
        if ($num < 1)
        {
            return NULL;
        } else {
            return $row;
        }
    }

:

function get_all($siteid) {
        $this->db->select('*')
            ->from('pages')
            ->where('siteid', $siteid)
            ->order_by('rank');
        ;
        $query = $this->db->get();
        $row = $query->row_array();
        $num = $query->num_rows();
        if ($num < 1)
        {
            return NULL;
        } else {
            return $query;
        }
    }

每次创建页面时,您都需要执行这一行,因此我建议在所有脏工作完成后将其放在控制器的末尾:

$this->save_routes();

所有这些都将使你的路由文件变得很好,当事情发生变化时,它将不断更新。

一些不太复杂的东西,它保持url友好:

inside of routes.php:

// Routes from the database
require_once (BASEPATH .'database/DB.php');
$db =& DB();
// slug will be something like
// 'this-is-a-post'
// 'this-is-another-post'
$sql = "SELECT id, slug FROM items";
$query = $db->query($sql);
$result = $query->result();
foreach( $result as $row )
{
    // first is if multiple pages
    $route["$row->slug/(:num)"] = "item/index/$row->id";
    $route["$row->slug"] = "item/index/$row->id";
}

假设'id'是主键,'slug'是唯一的

在控制器内部,您可以通过以下方式获取id:

    $id = $this->uri->rsegment(3);