Download the PHP package gajus/moa without Composer
On this page you can find all versions of the php package gajus/moa. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package moa
Short Description MOA implements dynamically generated Active Record database abstraction.
License BSD-3-Clause
Homepage https://github.com/gajus/moa
Informations about the package moa
MOA
This project is no longer maintained.
MOA (Mother of All) is a database abstraction using Active Record pattern:
Active record is an approach to accessing data in a database. A database table or view is wrapped into a class. Thus, an object instance is tied to a single row in the table. After creation of an object, a new row is added to the table upon save. Any object loaded gets its information from the database. When an object is updated the corresponding row in the table is also updated. The wrapper class implements accessor methods or properties for each column in the table or view.
– http://en.wikipedia.org/wiki/Active_record_pattern
MOA is designed to handle CRUD operations.
MOA is not ORM. MOA does not work with object relations and dependencies. However, these libraries do:
MOA does not implement elaborate finders, filters or methods for querying data. However, these libraries do:
Hierarchy & Responsibilities
Builder
MOA is using dynamic code generation to represent your database. builder script generates a file for each table using attributes fetched from the database (e.g. column name, type, default value, etc.). These classes are generated dynamically to reduce the amount of hand-coded duplication of the data representation.
This is an example of generated class.
With other Active Record implementations you do not need a generator because these properties are either hand-typed or fetched during the execution of the code. The former is tedious and error-prone, while the latter is a lazy-workaround that has a considerable performance hit.
Mother
All models extend Gajus\MOA\Mother
. Mother attempts to reduce the number of executions that would otherwise cause an error only at the time of interacting with the database. This is achieved by using the pre-fetched table attributes to work out when:
- Accessing a non-existing property.
- Setting property that does not pass derived or custom validation logic.
- Saving object without all the required properties.
Furthermore, Mother is keeping track of all the changes made to the object instance. UPDATE
query will include only the properties that have changed since the last synchronization. If object is saved without changes, then UPDATE
query is not executed.
If you know a negative downside of the behavior described above, please contribute a warning.
Delete operation will remove the object reference from the database and unset the primary key property value.
Hierarchy
Using MOA you can base class.
This is an example of an application hierarchy incorporating all of the MOA components:
API
This section of the documentation is using code examples from a fictional application to introduce you to the API. The My\App\Model\Person
model in the example extends from:
Create and Update
Object is inserted and updated using save
method. Object is inserted to the database if instance primary key property has no value. Otherwise, object is updated using the primary key property value.
When object is inserted to the database, new object state is fetched from the database:
Delete Object
Deleting object will remove the associated entry from the database and unset the primary key property value.
However, other property values are not discarded. If the same object instance is saved again, it will be inserted to the database with new primary key value:
Inflate Object
Object is inflated using the primary key:
In the above example, object data is retrieved from the database where primary key value is "2".
Getters and Setters
MOA implements ArrayAccess
interface. You can manipulate object properties using the array syntax, e.g.
or if you need to set multiple properties at once:
Extending
Mother
To inject logic between Mother and the generated models:
- Extend
Gajus\MOA\Mother
class. - Build models using
--extends
property.
Individual models
Models generated using MOA are abstract
. You need to extend all models before you can use them:
MOA convention is to prefix "getMany[Where]" methods that return array and "get[Where]" that return an instance of
Mother
. This is not enforced. It is an observation of what works the best in practise.
Triggers
These methods can interrupt the respective transactions:
Validation
MOA ensures that user input is compatible with the schema, e.g. if input will be truncated because it is too long.
MOA provides two types of validation that you can implement before the schema validation.
Naming Convention
- MOA model names are using CamelCase convention (e.g.
UserAgent
). - Table names must be singular (e.g.
user_agent
notuser_agents
) using underscore convention.
Builder Script
Models are built using ./bin/build.php
script, e.g. unit testing dependencies in this repository are built using:
Parameters
Name | Description |
---|---|
path |
[required] Path to the directory where the models will be created. |
database |
[required] MySQL database name. |
host |
MySQL database host. |
user |
MySQL database user. |
password |
MySQL database password. |
namespace |
[required] PHP class namespace; |
extends |
PHP class to extend. Defaults to "\Gajus\MOA\Mother". |
All .php
files will be deleted from the destination path
. The destination path
must have an empty .moa
file. This requirement is a measure to prevent accidental data loss.
Installation
MOA uses Composer to install and update: