Welcome Guest, Not a member yet? Register   Sign In
Virtual file extensions hook for CodeIgniter
#1

[eluser]Unknown[/eluser]
Hi CodeIgniters programmers here I wanna make my own routing procedure for improving the Ajax programing arquitecture. Like I didn't care to reinvent the wheel, I looked for something of this kind and found Another AJAX approach from CI in the CodeIgniter Wiki; and I think this was very good for starting; but I needed more to specify several formats althought this archives wouldn't exists but simulated by a PHP, for having variables outputs (Ajax could be Xml o Json for example), so I decided to do my own mapping routine. So you have to change the original Router.php for the new one..., like this...

Original: \system\libraries\Router.php

Code:
$this->uri->_fetch_uri_string();

// Is there a URI string? If not, the default controller specified in the "routes" file will be shown.
if ($this->uri->uri_string == '')


Newone: \system\libraries\Router.php

Code:
$this->uri->_fetch_uri_string();

//Start the looking for formats
$FORMATS=array('json','js','xml','pdf');
$this->format=EXT;        //The default format is .php
foreach($FORMATS as $format)
if (stripos($filename=substr($this->uri->uri_string,- (strlen($format)+2)),".$format"))
        {
            //Set the format
            $this->format = $format;
            //extracts the virtual extension to the last variable
            $this->uri->uri_string = str_ireplace(".$format",'',$this->uri->uri_string);
break;
        }
//Finish looking for formats


// Is there a URI string? If not, the default controller specified in the "routes" file will be shown.
Code:
if ($this->uri->uri_string == '')
{
This is useful for asking our application for an specific filenames with their extension, but ended is php whos create the content dynamically. This new Routing hook allow us to ask to a query to be json (for example) like it would be a .json file like:

http://localhost/ajaxapp/module/file.json

The routing will clean this URL to:

http://localhost/ajaxapp/module/file

And will put the $CI->router->format to the specific format. The formats I care in this example:

json
js
xml
pdf


So we could decide to show the wanted output like for example return a json outoput or a table made in html, like this:

Code:
//Controller function example
function get_data()
{
$data['title']="Polymorphic urls behavior";
$query=$this->Testmodel->get_data();   //return an array with the data

switch($this->router->format)
{
case 'json':
echo   encode_to_json($query)    //this is a helper function
default:
$data['content']=$query->result();
$this-load->view('generic_tables',$data);  //The html standard output (.php archives)
};

}

This is a example of a functionality that’s could be request by ajax or by a normal request(html). Not all functions could need this issue, only use it when you have different ways to output this; for example some function will have the case 'xml': instruction for "based xml Ajax call" or for a regular RSS and the arguments defines the rest.
Thanks to anybody who reads this article, I hope it would be useful for you. I will thanks feedback to me.
Greetings, Eliecer (EliuX) Hdz. Garbey




Theme © iAndrew 2016 - Forum software by © MyBB