Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/DenBeke/ORM

Object-Relational Mapping for PHP
https://github.com/DenBeke/ORM

Last synced: about 2 months ago
JSON representation

Object-Relational Mapping for PHP

Awesome Lists containing this project

README

        

ORM
===

[![Build Status](https://travis-ci.org/DenBeke/ORM.svg?branch=master)](https://travis-ci.org/DenBeke/ORM)

*Simple ORM implementation for PHP*

When working with SQL databases, there is always the same monkey work that has to be done,
like selecting using the table parameters, putting the result back in to a class, ...

ORM (object-relational mapping) solves this problem, you can just call some methods on classes,
using the properties defined in your classes.

This implementation is naive and very simple, but can spare you a lot of time and work.

---

- [Install](#install)
- [Usage](#usage)
- [Configuration & Initialization](#configuration--initialization)
- [ORM class](#orm-class)
- [Get methods](#get-methods)
- [get()](#get)
- [getBy*()](#getby)
- [Options](#options)
- [limit](#limit)
- [orderBy](#orderby)
- [AND](#and)
- [OR](#or)
- [add()](#add)
- [update()](#update)
- [remove()](#remove)
- [License](#license)
- [Author](#author)

Install
-------

Since writing queries is a task I don't always enjoy, this ORM packages depends on a query builder: [Pixie](https://github.com/usmanhalalit/pixie) (by Muhammad Usman).

Dependencies are installed through [Composer](https://getcomposer.org):

$ composer install

You can of course also install this package using Composer:
Add `"denbeke/orm": "dev-master"` to your requirements and add the following code to the root
of the `composer.json` file to add the Github repo:

```json
"repositories": [
{
"type": "vcs",
"url": "https://github.com/DenBeke/ORM.git"
}
],
```

Usage
-----

### Configuration & Initialization

*Before you can do anything you must call the `\DenBeke\ORM\ORM::init()` function (you must do this once in your application). An exception will be thrown if you call a method on an uninitialized ORM class.*
`\DenBeke\ORM\ORM::init()` takes an associative PHP array as argument. This array must contain some basic database configuration.

```php
$db_config = [
'driver' => 'mysql', // Db driver
'host' => 'localhost',
'database' => 'my_database_name',
'username' => 'root',
'password' => 'root',
];
\DenBeke\ORM\ORM::init($db_config);
```

The `$db_config` array will be passed to Pixie query builder. This means you can use all Pixie configuration options.

### ORM class

Creating an "ORM-ready" class is very simple, just inherit from `\DenBeke\ORM\ORM`.

```php
class Person extends \DenBeke\ORM\ORM {

public $id;
public $name;
public $city;

}
```

After writing the code, you must also add a table `person` to the database, with the fields `id`, `name`, `city`.
As you may have noticed, the table name is derived from the Class name (without namespaces and converted to lowercase!) and the column names are just the names of the PHP fields.

The ORM implements a default constructor which takes an associative array or an stdClass and assigns the values from the input to the fields of the new object.

```php
$person = new Person(['name' => 'Bob', 'city' => 'Amsterdam']);
```

### Get methods

Once the class inherits from `\DenBeke\ORM\ORM` you can access all the ORM methods. Starting with the get methods.

#### get()

The predefined `get()` method fetches all records of the given type from the database.
If we have 3 records in the table `person` we can get all of them using the `get()` function:

```php
$persons = Person::get();
```

In this example `$persons` is an array of size 3, containing objects of type `Person`.

#### getBy*()

Whenever a class has a field, the caller can get records from the database by those fields. In this example the class Person has the fields `id`, `name`, `city`. So you can call the following functions:

* `Person::getById($id);`
* `Person::getByName($name);`
* `Person::getByCity($city);`

Those static functions will return an array of Person elements, where the input parameter matches the table column.

#### Options

*Work In Progress*

You can supply options to the `get()` and `getBy*()` methods. The options parameter is an associative array.

```php
$options = [
'option1' => '...',
'option2' => '...'
];
```

##### limit

```php
$persons = Person::get(['limit' => 4]);
```

##### orderBy

You can order your results by supplying the `orderBy` option. `orderBy` should be an array,
containing the the database column/field to order by, and an optional direction (`ASC` or `DESC', default `ASC`).

If you have e.g. *Bob*, *John*, *Alice* in your database, the following operation will return *Alice*, *Bob*, *John*.

```php
$options = [
'orderBy' => ['name', 'ASC'],
];

$persons = Person::get($options);
```

##### AND

Adding `AND` clause to the `getBy*` method can be done using the `andWhere` option.

```php
$options = [
'andWhere' => [
'age',
'>',
18
]
];

Person::getByName($name, $options);
```

##### OR

Adding `OR` clause to the `getBy*` method can be done using the `orWhere` option.

```php
$options = [
'orWhere' => [
'city',
'=',
'Antwerp'
]
];

Person::getByCity('Brussels', $options);
```

### add()

Adding records to the database is quite simple, just create an instance of the class and call the `add()` method on it.

```php
$person = new Person;
$person->name = 'Alice';
$person->city = 'Brussels';

$person->add();
```

### update()

Updating a record is as easy as adding records.
Just alter a field and call the `update()` method.

```php
$person = Person::getByName('Bob')[0];
$person->city = 'Brussels';

$person->update();
```

### remove()

Deleting records can be done using the `remove()` method.

```php
$person = Person::getById(3)[0];

$person->remove();
```

License
-------

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .

Author
------

Mathias Beke - [denbeke.be](http://denbeke.be/)