Skip to content
/ CQmvc Public

CQmvc is a PHP MVC Framework that is a lightweight and Clean and Quick implementation IMHO. It's focus is on Request Model Bindings in which you can POST data with the exact Object Graph Navigation Model, that is, CQmvc with the help of a Runtime class, translates, auto expands and initiates and maps to your existing parameters defined in your c…

Notifications You must be signed in to change notification settings

madz0/CQmvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 

Repository files navigation

CQmvc

A Quick And Clean PHP MVC Framework

CQmvc is a PHP MVC Framework that is a lightweight and Clean and Quick implementation IMHO.

It's focus is on Request Model Bindings, Reducing need to imports or includes ,Creating a Clean and Quick Design with the help of Action Parameters Maping and View Constructors and Isolating Controller-Action-View logic from UI Scripts, Creating a Quick yet easy to troubleshoot errors with forcing Developers to use PHP Type Hints, Handling MVC base URLs in base Controller and so in.

In CQmvc, you can POST data with the exact Object Graph Navigation Model, that is, CQmvc with the help of a Runtime class, translates, auto expands and initiates and maps to your existing parameters defined in your controller's actions.

CQMvc A PHP MVC Framework

Copyright 2015 by Mohamad Zeinali mohammad.basu@gmail.com

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

There are othere codes inside the Framework that may provided from other sources and have licensed to their respective owners. Checkout source codes for more informations.

This List maybe incomplete, Contact me if you feel something is missing and I'll sort things up!

A simple PHP CAPTCHA script Copyright 2011 Cory LaViska for A Beautiful Site, LLC. (http://abeautifulsite.net/)

Licensed under the MIT license: http://opensource.org/licenses/MIT

Lets Start with a few definitions and some examples.

1) Definitions And Frameworks Overview:

You all know what is MVC, -> Controller<->Model<->View

Each Controller, have some functions called Actions in which get requests and with the help of business layer and Model classes, load proper Views.

Models in most cases, are some Plain Old Classes that define Domain Model structures. In most cases, all data that need to be posted to the application, are just some fields to create a Model Object. Then, having this Model Object in hand, most validations and business specific processes are done to this Model Object and finally outcomes are generated and returned in Views.

Views are collection of Classes and Scripts that help creating User Interfaces.

In CQmvc, there is a base Controller called Ctrl. all Controllers should extend Ctrl.

Views were implemented a little different that other implemetations you ever seen (at least, as far as I know) each View consists of a View Class and a View script. View class extends from Framework's View class and dynamically loads the View Script.

Like other implementions in other languages (.NET ASP MVC, JAVA SPRING-WEB and ...), There is no Base Model Class in this framework. Data Technology is totally up to you. Whether you want an ORM or just a simple PDO based connection, CQmvc wont interviene. This is just like the other frameworks in the other Languages. For example in ASP MVC.NET, One can decide to use Entity Framework or NHibernate or ...

In order to use CQmvc, All the framework specifiec Classes and Resources should be in the root directory and your Application Classes in the App folder. The overal structure is as below:

App -> folder

res -> folder

.htaccess -> in the case of apache

APCache.php

class.phpmailer.php -> mail helper class

class.smtp.php -> mail helper class

Crypto.php -> Crypto helper class

Ctrl.php -> Base class for controllers

FileBase.php -> All uploaded files will be of type FileBase

ICache.php -> Caching interface

index.html

index.php

MvcUrl.php -> Helper class to deal with mvc urls

NGINX-Location.conf -> Nginx rules. these should be placed in virtual host configuration

Route.php -> Handling url routings

Runtime.php -> Runtime class to convert types

SimpleCaptcha.php -> Captcha helper class

Store.php -> Serialization helper class

TypeHelper.php -> Type convert helper class

UUID.php -> UUID generator helper class

Validator.php -> Validation helper class

View.php -> Base class for view classes

Like I said, this structure should be in the root and your Application specific codes live in the App folder. inside App, the structure should be like this:

Control -> this folder contains Control classes.

View -> this folder contains View Classes and Scripts

Route -> this folder contains Route Class(es)

Those three folders are the main folders of any Application. In CQmvc, there is a consept of ClassPath. Meaning, some folders are in Frameworks Classpath and every classes that you put in there, with a few Rules, can be seen by Controllers and Views and thus no need to include or imports or whatever. This can be a greate saving in developers coding time.

These ClassPath folders are:

Model

ViewModel

Helper

Res

Also Control and View Folder are in the Classpath by default. Despite that, For those who like everything to be Organized and Clean in coding, Some scpecial subfolders inside those folders are in Classpath too.

For example imagine you have a Controller defined as MyControl.php inside Control class. All Classes that are only used by this Controller, can be inside Model/MyControl/ or Helper/MyControl/ or Res/MyControl/ or ViewModel/MyControl/

Also All Views that are Rendered by MyControl, can be inside View/MyControl/

And you don't need a single include or whatever for those classes. Classes that are shared between some Controllers Or Views, Should be live directly inside those folders otherwise you need to include them.

Oh! almost forgot to say that, Ther is a single naming rule to make that Classpath thing work! Every Class should have the same name as its file. So in our example, The MyControl should be defined in a file Called MyControl.php.

Please note that this does not mean that every file should contain exactly one Class. For example imagine I've defined a Model Called MyModel inside MyModel.php. This MyModel uses a helper class Called MyModelHelper. I can easily put MyModelHelper inside MyModel.php if and only if MyModel class gets called first in the Controllers or Views or other places otherwise it should be explicitly included.

Only one thing before starting the examples, and its about the Views.

Like I mentioned before, Views in this Framework, are slightly different.

Each View consists of a View class and a View Script. For example UserView is created by defining a class called UserView extending View in UserView.php and a Script as _UserView.php. UserView class dynamically finds and Loads that _UserView.php script. The easiest way is to follow that naming rule. But you can change the script name and tell the UserView class what is its name.

2) Examples

These examples is proved inside the source code in the App folder.

a) First of all we create the Test Controller inside Control folder of App directory.

App/Control/Test.php

class Test extends Ctrl {


public function index() {

       //How it handles views

       $this->view(new Index());
       $this->render();
       //or use this, it'll GZip the output
       //$this->renderGz();
   }
}

In the above class, we created an Action called index. Its going to be the index of our application.

Inside it, new Index() creates a View Class. Inside

App/View/Test/Index.php

class Index extends View {

}

Just like that! You could define that View directly inside:

App/View

just like we talked about.

Its script is like this:

App/View/Test/_Index.php

<?php

?>

<html>
<body>

<fieldset>
<legend><b>Form1</b></legend>
This simply gets user's name and his children and post the data
<form action="/Test/postTest" method="post">
id <input name="id" /> <br /> 
Name <input name="myModel->name" /><br />
children[0] <input name="myModel->children{0}" /><br />
children[1] <input name="myModel->children{1}" /><br />
<input type="submit" value="post" />
</form>
</fieldset>
</body>
</html>

In the above Script, we created a simple form. In that form, we are going to post some informations for our model and a single id value. We'r going to post his/her name, and two of his/her childern.

So what is the structure of myMode? How /Test/postTest could handle those wierd namings and map them to model?

Lets look at the Models structure.

App/Model/UserModel.php

class UserModel {

/**
 * 
 * @var array
 */
public $children;

public $name;

/**
 * 
 * @var FileBase
 */
public $profileImage;

/**
 * 
 * @var unknown
 */
public $profileImageUrl;

/**
 * 
 * @var array
 */
public $postedFiles;
}

It is just a simple PHP Class.

Now the /Test/postTest Action inside Test controller:

public function postTest(UserModel $myModel = null, $id = 0) {

    print "id: $id<br />";

    echo "Name $myModel->name <br />";

    echo "Children<br />";

    foreach ($myModel->children as $x) {

        echo "$x<br />";
    }
}

In the postTest Action, we define post parameters as Action's Arguments And should hint him what the expected types are.

Also its a good practice to bring default values for every Arguments.

Now All you need to do is to fill in some blah blah and click the submit button.

Its printing those you filled ha? But how?

Easy! Frameworks Runtime gets the Request data and routes and converts and maps them to the Action's Parameters.

Inside the Form, you can think of the {} as [] for arrays and the -> for dot. So the myModel->children{0} means the first child of the model and the children should be an array defined in Model Class.

Now lets take a more complex example:

b) Suppose the children array in UserMode consists of a objects of type ChildModel

App/Model/ChildModel.php

class ChildModel {

public $name;
public $lastName;
}

So we have this form:

<form action="/Test/complexFormTest" method="post" enctype="multipart/form-data" >

<fieldset>
<legend>User1</legend>
    Name <input name="myModels{0}->name" /></br>
    children{0}->name <input name="myModels{0}->children{0}->name" /><br />
    children{0}->lastName <input name="myModels{0}->children{0}->lastName" /><br />
    children{1}->name <input name="myModels{0}->children{1}->name" /><br />
    children{1}->lastName <input name="myModels{0}->children{1}->lastName" /><br /><br />
    Profile Image <input name="myModels{0}->profileImage" type="file" /><br />
    <br />File1 <input name="myModels{0}->postedFiles{0}" type="file" /><br />
    File2 <input name="myModels{0}->postedFiles{1}" type="file" /><br />
</fieldset>
<br />

<fieldset>
<legend>User2</legend>
    Name <input name="myModels{1}->name" /></br>
    children{0}->name <input name="myModels{1}->children{0}->name" /><br />
    children{0}->lastName <input name="myModels{1}->children{0}->lastName" /><br />
    children{1}->name <input name="myModels{1}->children{1}->name" /><br />
    children{1}->lastName <input name="myModels{1}->children{1}->lastName" /><br /><br />
    Profile Image <input name="myModels{1}->profileImage" type="file" /><br />
    <br />File1 <input name="myModels{1}->postedFiles{0}" type="file" /><br />
    File2 <input name="myModels{1}->postedFiles{1}" type="file" /><br />
</fieldset>

<input type="submit" value="post" />
</fieldset>
</form>

In the above form, we want to submit multiple users data each with their own children and profile image and some other files specified to each user.

Here is the complexFormTest Action defined inside Test Controller:

public function complexFormTest(array $myModels = null) {

    foreach ($myModels as $u) {

        echo "Name: $u->name <br />";

        echo "Profile Image Name ";
        print $u->profileImage->name."<br />";

        echo "Children:<ul>";

        /* @var $x ChildModel */
        foreach ($u->children as $x) {

            echo "<li>$x->name $x->lastName</li>";
        }
        print "</ul>";
        echo "Posted Files Name<ul>";

        /* @var $file FileBase */
        foreach ($u->postedFiles as $file) {

            print "$file->name <br />";
        }
        print "</ul>";
        echo "<hr />";
    } 
}

Every file you post, is converted to the FileBase object that has some helper methods to save or validate the file.

You also can post multi dimentional arrays and ...

3) Request Routing, Request Cycle And Handle Not Found

Every HTTP Request consists of a path information. For example when one tries to reach

http://some-site.com/P1/P2/.../Pn-1/Pn

It asks the web service to get contents of Pn that is inside the P1/P2/.../Pn-1

In CQmvc, Pn is representing an Action function inside the Pn-1 Controller.

So if someone asks http://some-site.com/News/showNews?id=1

Then as the developer, you should have the News Controller and the showNews Action inside it.

CQmvc maps and routes requests to the Controllers and Actions inside them.

With this model, now every Query Strings and/or Post Request fields is mapped to the Action's Arguments.

So the correct way to define the showNews Action will be:

class News extends Ctrl {

	public function showNews($id = 0) {
	
		/*
		 * now do what ever you like.
		 * for example I get news from the database
		 * using $id and pass the resualt to a view
		 * that I've already defined.
		 *
		 ** Also note that $db_connectoin is not a real thing
		 ** inside framework. Like we talked before, your Database
		 ** technology is something up to you.
		 */
		 
		 $query_array = $db_connectoin->prepareExecute("Select * From NewsTable Where id = $id");
		 
		 $this->view(new MyShowNewsView($query_array));
		 
		 return $this->render();  
	}
}

And the View is like

class MyShowNewsView extends View {
	
	/**
	* @var array
	*/
	public $newsResult;
	
	public function __construct(array $newsresult = null) {
	
		/*
		 * Here if you'd prefer, you can do some UI logic.
		 * for example create a UI object and fill it from
		 * the receivd array.
		 */
		 
		 $this->newsResult = $newsresult;
	}
}

And finally my View script that is called _MyShowNewsView.php

<?php

$newsArray = $this->newsResult;

?>

<!DOCTYPE html />

<html>
<body>
<?php
if(is_null($newsArray)) {

	print 'No result fount';
}
else {

	foreach($newsArray as $n) {
	
		//do and print some stuff
	}
}
?>
</body>
</html>

And this is exactly how most requests get mapped and routed until some stuff is printed in the client's browser.

In some other situations, you may want to stop request handling cycle in its early stages.

For example you create an Action that is only outputs simple string for AXAJ calls or even JSON or XML results. So you don't want to do all those View things. Then you could do

class News extends Ctrl {

	public function getAjaxResult() {
	
		$result = $thing->do_something();
		
		if(result) {
		
			return "Yes";
		}
		
		return "No";
	}
}

In some other cases, only the Controller or View is not enough for your application. For example you have another part in your PATH representing the language. Like

http://some-site.com/en-US/News/showNews

In that case, once CQmvc detected the News Controller and the showNews Action, it'll pass an array containing all PATH parts to the constructor of the Controller. So if you are interested to them, you could do

class News extends Ctrl {

	public function __construct() {
	
		//Don't forget to call parent constructor first 
		parent::__construct();
		
		$path = func_get_arg(0);
		
		if(isset($path)) {
		
			if($path[0] == 'en-US') {
				
				//do something
			}
		}
	}
}

As we talked befor, every HTTP request comes with a PATH information. Now what are we going to do if someone just hit the http://some-site.com in the browser? There is no Controller and View in this request. Here, the Default Route starts its role.

Always there should be a Route folder inside every App folder that holds the DefaultRoute.php file.

DefaultRoute.php contains the DefaultRoute class.

class DefaultRoute extends Route {
	
	public function getDefaultPath($path = null) {
		
		return "/Test/Index";
	}
	
	public function getNotFoundPath($path = '', & $notFound) {
	
		/*
		 * I just use the default path to answer not founds. But you can handle them differently.
		 * like 
		 * return "/Oopse/notFound";
		 */
		$notFound = false; //If you set notFound as true, 404 NOT Found header will be set in response
		return $this->getDefaultPath($path);
	}
} 

If CQmvc could not find any candidates for Controller Or View in the PATH, it calls the getDefaultPath function inside your DefaultRoute class and pass the current PATH as a string to the function. You can decide what is the proper PATH for current request.

For example take the above DefaultRoute class taken from the source code. Here no matter what, I answer the framework to serve /Test/Index everytime it asks for the default route.

Depending of your case, you could do something dynamic. For example imagen you expect this PATH for a request:

/lang/Controller/View

One better example could be

http://some-site.com/en-US/News/showNews

Now someone asks http://some-site.com/en-US/

inside getDefaultPath you can check if the path only contains "en-US" you return your home page with english contents:

return "/en-Us/Home/index";

The Other function (getNotFoundPath) is called when CQmvc could not find the Controller or the Action brought by the PATH.

4) Master View

CQmvc also provides Templating using Master View Technique. Models and ViewModels can be passed to Views by Constructors directly or assign to View Class Fields.

For example:

CQmvc also has some helper Classes like SimpleCaptcha from (https://github.com/claviska/simple-php-captcha) Converted to a suitable Class and a UUID Class directly copy and pasted from http://php.net/manual/de/function.uniqid.php. Also there is a Store Class for serializatoins and a Simple Validator Class.

Validator can be used to validate

  1. Length of a string
  2. Strngth of a password
  3. Valid email address
  4. Valid names
  5. Valid urls
  6. Valid ip v4 and v6
  7. Valid dns lables
  8. Valid dns lables with wildcard (*)
  9. Valid dns names and dns names with wild card
  10. Check if a string starts or ends with some other string

Famous PHPMailer from https://github.com/PHPMailer/PHPMailer/ witch is put in the ClassPath and it can simply be used to send mails by

 $mailer = new PHPMailer;
 //setting message body and other configurations...
 $mailer->send();

About

CQmvc is a PHP MVC Framework that is a lightweight and Clean and Quick implementation IMHO. It's focus is on Request Model Bindings in which you can POST data with the exact Object Graph Navigation Model, that is, CQmvc with the help of a Runtime class, translates, auto expands and initiates and maps to your existing parameters defined in your c…

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages