RAMP
RAMP
James Sosontovich
Buy on Leanpub

LAMP setup on FreeBSD

(0) Overview

Use RAMP for a LAMP stack on FreeBSD with an installed version of this Phalcon Contractor application.

(0) Welcome To PHP Framework PRO

This is the documentation for a high-level overview of how modern PHP frameworks handle web requests.

These are my notes and observations as I learn the ins and outs of modern PHP frameworks.

If you want to access all of the code at once, you can clone the public repo here:

https://github.com/GaryClarke/php-framework-pro

(1) The Front Controller

The Front Controller is a software design pattern which provides just a single entrypoint to a web application.

This pattern is used by all of the PHP frameworks that you can think of and provides many benefits, the main ones being:

  • Centralized control
  • System maintainability
  • Configurability

Any installable tech or non-common PHP extensions, need to be added to the RAMP stack.

For PHP’s built-in server. Simply run this command and you’re up and running:

php -S localhost:8000 public/index.php

Or use Nginx or Apache.

(2) Autoloading

Before we start to create Http classes to represent request and response, let’s dive into Composer in order to set up autoloading.

The folder structure will be important here because we are creating framework files and classes but also application files and classes (i.e. the kind of files that a framework user would create). I intend to keep these separate by having a src folder and a framework folder.

  • Note - I also added the /vendor folder to the .gitignore file.

Namespaces are used to keep the code organized and to avoid naming conflicts.

  • “Invo\”: “src/”
  • “App\”: “src/app/”,
  • “JimSos\Framework\”: “framework/”

** Warning \\ double backslash in the namespace are not showing in above expression. **

Mapping namespaces to file folders.

For example, you may have a set of classes which describe an HTML table, such as Table, Row and Cell while also having another set of classes to describe furniture, such as Table, Chair and Bed. Namespaces can be used to organize the classes into two different groups while also preventing the two classes Table and Table from being mixed up.

Fix Error: Class “JimSos\Framework\Http\Request” not found Autoload the Request class. If you are using Composer, run composer dump-autoload to rebuild the autoloader.

(3) Application Structure

Now that the basic setup is complete, the Application class is used to initialize and run a Phalcon application. It takes in the dependency injection container ($di) as input.

The purpose of this code is to create a new Application instance and call its handle() and send() methods to process the request and send the response back to the client.

The handle() method takes the $_SERVER[‘REQUEST_URI’] as input, which contains the request URL. It will route this request to the appropriate controller/action and generate the response.

The send() method outputs the response content to the client.

To summarize the logic:

  • Create the Application instance with the DI container
  • Call handle() and pass in the request URI
  • This will route the request and execute the controller/action
  • The response is generated
  • Call send() to output the response to the client

So in simple terms, this code initializes the Phalcon application, handles the incoming request, executes the required controllers/actions, generates the response and returns it back to the caller. The Application class brings together all the components needed to accept the request, route it, execute it, create the response and send it back.

For this framework/app example case, I will build the Application class from scratch to mimic the structure of a real-world application.

(4) STRICT TYPES

What is declare(strict_types=1)? The declare(strict_types=1) is a directive in PHP that enforces strict type checking for function and method arguments and return values within a specific PHP file or code block. When you enable strict type checking, PHP ensures that the data types of function arguments and return values match exactly with the declared types. Exactly the same way as Java does.

Place this declaration at the very beginning of your PHP file or code block (before any other code) to enable strict typing.

(5) SUMMARY

Section 1-4 are the basic setup for a PHP framework, not the framework itself.

(6) THE REQUEST -> RESPONSE CYCLE

(6.1) Request Class

All PHP frameworks use objects to represent the incoming request. One of the greatest advantages of this is encapsulation: we can store all of the superglobal values as properties on our request object and those values will be preserved and protected from being tampered with unlike the superglobals which can have their values altered.

We will be able to use some of the properties on our request object in order to perform important operations such as routing the request to the correct handler (controller) etc.

The Request class which I create here is a superlight model based on the Symfony Http Foundation request class

$request = \JimSos\Framework\Http\Request::createFromGlobals();

This is an interface that can be swapped out for a more complex implementation without affecting the rest of the framework code.

(6.2) Response Class

In the same way that we did with the request, let’s also encapsulate the response data by creating a response class. There are 3 main pieces of data associated with a response and they are:

  • Content
  • Status (code)
  • Headers

$response = new Response(content: $content, status: 200, headers: []);

We have a useful object that encapsulates the response data, content, status, headers -and we can use it to send the response back to the client.

$response->send();

This content will always be a string (or null) so we can send it by echoing it from a $response->send() method.

(6.3) Http Kernel

We’ve looked at the Request class and the Response class so now let’s consider a class which is responsible for taking that Request and returning a Response.

For this we are going to create a HTTP Kernel class which is the heart of your application. This class will be composed of the main components that we are going to need to complete the request -> response cycle.

$response = $kernel->handle($request);

$response->send();

(6.3.1) Steps 1 to 3 Coding Example**

 1 php declare(strict_types=1); 
 2 
 3 use JimSos\Framework\Http\Request;
 4 use JimSos\Framework\Http\Response;
 5 use JimSos\Framework\Http\Kernel;
 6 
 7 public/index.php
 8 PHP Framework for Web Applications
 9 Step by step by numbered steps    
10 
11 
12 Debugging 
13 (new Phalcon\Support\Debug())->listen();
14 
15 $rootPath = realpath('..');
16 require_once $rootPath . '/vendor/autoload.php';
17 
18 request received (1)
19 $request = Request::createFromGlobals();
20 dd($request);
21 
22 perform some logic
23 send response (string of content) (2)
24 $content = '<h1>RAMP Framework</h1>';
25 $response = new Response(content: $content, status: 200, \
26 headers: []);
27 $response->send();
28 
29 perform some logic (3)
30 $kernel = new Kernel();
31 send response (string of content)
32 $response = $kernel->handle($request);
33 dd($response);
34 JimSos\Framework\Http\Response {#7 ▼
35     -content: "RAMP KERNEL"
36     -status: 200
37     -headers: []
38   }
39 
40 $response->send();

(7) Routing and Controllers

(7.1) Routing Key Concepts: Dispatchers

The dispatcher is the component which is responsible for taking the incoming request and routing it to the correct controller/action.

(For our routing we are going to use a 3rd party package called FastRoute which uses regular expressions to match URI’s to routes and their handlers.

You can find FastRoute here: https://github.com/nikic/FastRoute and we will install it using composer.)

Definition: what’s exactly a dispatcher ?

The name can be a bit misleading and make it sound more complex than it is but it’s an object or a method which determines which piece of code is going to handle the request.

In-depth explanation

  1. Understanding Routing: In web development, routing refers to the process of directing an HTTP request to the correct piece of code, usually a function or a method in a class. Routes are typically defined in terms of URLs and HTTP methods (like GET, POST, etc.). For example, a route could be defined to handle all GET requests for “/home”.

  2. Role of a Route Dispatcher: The route dispatcher is responsible for taking an incoming HTTP request, analyzing its URL and method, and then determining which piece of code should handle the request based on the routes that have been defined.

  3. Process of Dispatching:

    • Request Analysis: When a request arrives, the dispatcher examines the request’s URL and HTTP method.
    • Matching Route: It then matches these against the set of defined routes. Each route specifies a URL pattern and often an HTTP method.
    • Executing the Handler: Once a match is found, the dispatcher executes the associated handler (function or class method), which generates the response to the request.
    • Handling No Match: If no matching route is found, the dispatcher can trigger a default action, like displaying a 404 error page.
  4. Why ‘Dispatcher’?: The term “dispatcher” might seem confusing, but it’s analogous to a dispatcher in other fields (like emergency services) who directs calls to the right place. Here, the “calls” are HTTP requests, and the “right place” is the code that should handle them.

By understanding the dispatcher as a sort of ‘traffic controller’ for HTTP requests, you may find it easier to grasp its role in the routing process. It’s not about sending out requests or data but about directing incoming requests to the right destination in the application.

(7.2) Routing Key Concepts: File Structure for my example application

At first all the routes are defined in the kernel.php file. Since we don’t want to hard code the routes in the kernel file we are going to create a routes directory within of our application (app) folder. There can be many types of routes, for now we are going to use a simple route file called web.php which will be used to define the routes for our web application.

ramp/src/app/routes/web.php

Setting up the correct namespaces is a bit trickier.

(Setting up the correct namespaces and directory structure for both my PHP Phalcon Contractor application, Invo, and my PHP Framework and example application, App, is dependant on my personal directory structure of this custom github project. It does not follow any kind of particular framework directory structure, but my own custom directory structure.)

directory namespace
/framework JimSos\\Framework\\
/src/app App\\
/src Invo\\

(8) Dependency Injection Container

(8.1) The first step in understanding dependency injection is to understand the terminology.

What is Dependency Injection? These are basic programming practices that you should follow when writing any application. These are the fundamentals needed for writing clean, understandable, and maintainable code.

Learn and follow these rules.

The principles shown here are simple.

Take an example Program:

1 function add(float $a, float $b): float
2 {
3     return $a + $b;
4 }
5 
6 echo add(1, 1); // prints 2

A few lines of code with many key concepts hidden in them. There are variables. That code is broken down into smaller units, which are functions. I pass them input arguments and they return results. All that’s missing are conditions and loops for an example of a more complex program.

A function takes input data and returns a result is an understandable concept, also used in mathematics.

A function has its signature, which consists of its name, a list of parameters and their types, and finally the type of the return value. As users, we are interested in the signature, and we usually don’t need to know anything about the internal implementation.

Now imagine that the function signature looked like this:

1 function add(float $x): float

An addition with one parameter?

1 function add(): float

Now none? How is the function used?

1 echo add(); // what does it prints?

Looking at such code, we would be confused.

Are you wondering what such a function would actually look like inside? Where would it get the summands? It would probably somehow get them by itself, perhaps like this:

1 function add(): float
2 {
3     $a = Input::get('a');
4     $b = Input::get('b');
5     return $a + $b;
6 }

It turns out there’s hidden bindings to other functions (or static methods) in the body of the function, and to find out where the addends actually come from, we have to dig further.

Do Not Do It This Way The design I just showed is the essence of many negative features:

  • the function signature pretended that it didn’t need the summands
  • we have no idea how to make the function calculate with two other numbers
  • we had to look at the code to find out where the summands came from
  • we found hidden dependencies
  • a full understanding requires examining these dependencies
  • is it the job of the addition function to procure inputs? No, its responsibility is only to add

We don’t want to encounter code like this, and we don’t want to write it.

The remedy is simple: go back to basics and just use parameters:

1 function add(float $a, float $b): float
2 {
3     return $a + $b;
4 }

Rule #1: Let It Be Passed to You The most important rule is: all data that functions or classes need must be passed to them.

Instead of inventing hidden ways for them to access the data themselves, simply pass the parameters.

If you follow this rule, you are on your way to code without hidden dependencies, where everything is understandable from the signatures of functions and classes, and there is no need to search for hidden secrets in the implementation.

This technique is professionally called dependency injection. Those data are called dependencies.

It’s just ordinary parameter passing, nothing more.

Do not confuse dependency injection, which is a design pattern, with a “dependency injection container”, which is a tool, something diametrically different.

(8.2) From Functions to Classes

How are classes related to dependency Injection? Classes are more complex than function, still rule #1 applies here as well. There are just more ways to pass arguments when using classes.

The Basics

Welcome to the Leanpub Browser book writing editor! This page is where you will be writing your book. This file is a working, real example of how to write a book chapter in plain text with Markdown formatting (which we’ll explain briefly below).

This is a paragraph. You just write.

Blank lines are used to separate paragraphs.

To make italic text you surround it with single asterisks. To make bold text you surround it with double asterisks.

Previewing and publishing

You can preview or publish your ebook by clicking a button!

To preview your book:

  1. Click Useful Links on the left
  2. Click Preview Page
  3. Click the Create Preview button

To publish your book:

  • Click Useful Links on the left
  • Click Publish Page
  • Click the Publish Book button

Yes, these instructions are not just help text: they are also a book manuscript which you can preview or even publish!

Once the book has been generated, you can download it in PDF or EPUB format to see what it looks like.

In fact, we’ve already created a preview of your brand new book for you, just now!

Just click on the Useful Links on the left, and click the Preview Page link to see it!

(If you get to the preview page and there are no ebook links yet, congratulations: you’re a really fast reader! In that case, just wait a minute and then reload the page to see them.)

Or, if you don’t believe book publishing could possibly be this easy, just edit some of the text on this page and create your own preview from the Preview page by clicking the Create Preview button.

Basic formatting

You can start new chapters by starting a line with a # sign and a space, and then typing your chapter title, just like you can see at the top of this page, where you see # The Basics on a line by itself.

You can create multiple chapters in one file, but we recommend one chapter per file. This way, your manuscript files will be easier to navigate. So, for example, this chapter is contained in the file named “The Basics” that you can see listed under the “Manuscript” menu to the left. “The Basics” is in bold in the menu, because it is the file that is currently selected.

(If you start typing in here, the Manuscript menu and all the other menus will go away, so that you can relax and focus on your writing! Just click outside of this text area, and all the menus will come back.)

You can make a thematic break with three asterisks, like this:


By the way, the above formatting is actually all you need to know to write a typical novel using Markdown formatting! To write a technical book, however, you’ll need to know a bit more Markdown, and learn a bit about Markua.

Markdown and Markua

The dialect of Markdown used at Leanpub is called Markua.

Markdown is great, but it doesn’t have support for certain things that many books need. These include index entries, crosslinks, endnotes, external code samples, etc. So, we’ve added these to Markdown, by extending Markdown in an open specification called Markua.

The Markua spec is here.

However, that spec is really long, and there are a few advanced things in the spec which aren’t fully supported in Leanpub yet.

So, if you want to learn how to get started writing in Markua on Leanpub, see the next chapter, Writing in Markua, by clicking the Writing in Markua chapter under the Manuscript menu to the left.

This chapter will show you everything you need to know about how to use all the important parts of Markdown and Markua to create a technical book, including how to use…

  • lists
  • images
  • code samples
  • tables
  • math
  • resource attributes
  • document settings
  • asides and blurbs
  • index entries
  • crosslinks

Seriously, unless you already know everything about Markua, you should strongly consider looking at that chapter. It may save you a bunch of time!

Generate a preview version of your book

You should probably generate a preview of this version of your book next, to save a copy of these helpful instructions. (The Writing in Markua chapter can come in handy!)

Click on the Versions tab above to go to the Preview page, and then click Create Preview to do that.

Either read a tutorial, or just go for it!

At this point, there are two good ways to proceed. You can either read a tutorial and follow along, or you can just go for it!

(If you’re feeling adventurous, just go for it. The tutorial is linked on the Help > Getting Started page, so you can always read it later…)

Read the tutorial…

If this is your first time writing a Leanpub book in our Browser writing mode, after you’ve read the Writing in Markua we recommend you read our full tutorial here. That tutorial will guide you through every step, including previewing versions for your review, and even publishing the first version of your book when you’re ready!