Luminova Framework

Base Model

Last updated: 2024-06-01 09:14:25

The BaseModel serves as the foundation for all models within your application, providing essential functionalities and features to interact with the database in an efficient and secure method.

It allows you to define basic rules for your models, like fields that are allowed to be inserted into the model database table, delete, or update. Additionally, it also supports flagging the model as read-only which limits the model to only perform select statements.


  • Class namespace: \Luminova\Base\BaseModel
  • This class is an Abstract class

Properties

table

Model table name name.

protected string $table 

primaryKey

The default primary key column name for table, this will be used while selecting, updating and more.

protected string $primaryKey

searchables

Define your database table searchable columns, the fields that search will have to look for queries.

protected array<int,string> $searchables

cachable

Enable or disable database caching for model while calling select, find, search, total or count.

protected bool $cachable

expiry

Database cache expiration time TTL in seconds.

protected DateTimeInterface|int $expiry

readOnly

Specify whether the model's table is updatable, deletable, and insertable.

protected bool $readOnly

insertables

Define fields that can be inserted into.

protected array $insertables

updatables

Define fields that can be updated.

protected array $updatables

rules

Define your Input validation rules based on Validator class rules.

protected array<string,string> $rules

messages

Define your Input validation rules errors messages.

protected array<string,array> $messages

builder

Database query builder class instance.

protected \Luminova\Database\Builder $builder

validation

Input validation class instance.

protected static \Luminova\Security\InputValidator $validation

Methods

constructor

Constructor for the Model class, if query builder instance is passed null, it will create a new instance.To use with your configured builder instance pass it.

public __construct(?\Luminova\Database\Builder $builder = null): mixed

Parameters:

ParameterTypeDescription
$buildernull|\Luminova\Database\BuilderQuery builder class instance.

insert

Insert a new record into the current database.

public insert(array<string,mixed> $values): bool

Parameters:

ParameterTypeDescription
$valuesarray<string,mixed>nested array of values to insert into table.

Return Value:

bool - Return true if records was inserted, otherwise false.

Throw Exception:

\Luminova\Exceptions\RuntimeException - Throws if columns contains unallowed column.


update

Update current record in the database.

public update(string|array<int,mixed> $key, array $data, int $max = 1): bool

Parameters:

ParameterTypeDescription
$keystring|array<int,mixed>The key?s to update its record.
$dataarrayColumns key and value to update.
$maxintThe maximum number of records to update.

Return Value:

bool - Return true if records was updated., otherwise false

Throw Exception:

\Luminova\Exceptions\RuntimeException - Throws if columns contains unallowed column.


find

Fine next or a single record from the database table.

public find(string|array<int,mixed> $key, array<int,string> $fields = ['*']): mixed

Parameters:

ParameterTypeDescription
$keystring|array<int,mixed>The key?s to find its record
$fieldsarray<int,string>The fields to retrieve (default is all).

Return Value:

mixed - Returns selected records or false on failure.


select

Select records from the database table.

public select(string|array<int,mixed> $key = null, array<int,string> $fields = ['*'], int $limit = 100, int $offset = 0): mixed

Parameters:

ParameterTypeDescription
$keystring|array<int,mixed>The key?s to select its record, if null all record in table will be selected.
$fieldsarray<int,string>The fields to retrieve (default is all).
$limitintSelect result limit (default: 100).
$offsetintSelect limit offset (default: 0).

Return Value:

mixed - Returns selected records or false on failure.


Select records from the database.

public search(string $query, array<int,string> $fields = ['*'], int $limit = 100, int $offset = 0): mixed

Parameters:

ParameterTypeDescription
$querystringSearch query string, escape string before passing.
$fieldsarray<int,string>The fields to retrieve (default is all).
$limitintSearch result limit (default: 100).
$offsetintSearch limit offset (default: 0).

Return Value:

mixed - Returns found records or false on failure.


delete

Delete a record from the database.

public delete(string|array<int,mixed> $key = null, int $max = 1): bool

Parameters:

ParameterTypeDescription
$keystring|array<int,mixed>The keys to delete, if null all record in table will be deleted.
$maxintThe maximum number of records to delete.

Return Value:

bool - Return true if the record was successfully deleted otherwise false.


total

Get total number of records in the database.

public total(): int|bool 

Return Value:

int|bool - Return the number of records or false if failed.


count

Get total number of records in the database based on the keys.

public count(string|array<int,mixed> $key): int|bool 

Parameters:

ParameterTypeDescription
$keystring|array<int,mixed>The key?s to find total number of matched.

Return Value:

int|bool - Return the number of records or false if failed.


purge

Delete all model database caches.

public purge(): bool

Return Value:

bool - Return true if all caches are deleted, false otherwise.


validation

Initialize and ser validation class object.

protected validation(): Luminova\Security\InputValidator

Return Value:

Luminova\Security\InputValidator - Return the number of records.

After first initialization you can then use static::$validation to access the object.


doSearch

Run a database search current model table.

public doSearch(string $query, array<int,string> $fields = ['*'], int $limit = 100, string $offset, string $flag = 'any'): mixed

Parameters:

ParameterTypeDescription
$querystringsearch query string, escape string before passing.
$fieldsarray<int,string>The fields to retrieve (default is all).
$limitintsearch limit default is 100.
$offsetstringsearch limit offset default is 0.
$flagstringSearch matching flag, default is (any) any matching keyword.

Return Value:

mixed - Return found records or false on failure.

Throws:

To use this method or searchInstance you will first have to install a third party library by running composer command composer require peterujah/php-search-controller .


searchInstance

Return search controller class instance.

protected searchInstance(string $flag): \Peterujah\NanoBlock\Searchable

Parameters:

ParameterTypeDescription
$flagstringSearch matching flag.

Return Value:

Searchable - Search controller instance.

Throws:


getTable

Get the name of the database table associated with this model.

public getTable(): string

Return Value:

string - The name of the database table.


getKey

Get the primary key field name for this model.

public getKey(): string

Return Value:

string - The primary key field name.


getSearchable

Get the table searchable array of column names.

public getSearchable(): array<int,string>

Return Value:

array<int, string> - Return table searchable column names.


isReadOnly

Check if method is read only

public isReadOnly(): bool

Return Value:

bool - Return true if is read only otherwise false.