mirror of
https://codeberg.org/vlw/scaffold.git
synced 2025-11-05 06:02:42 +01:00
Compare commits
6 commits
e1d3a09966
...
00337cd3aa
| Author | SHA1 | Date | |
|---|---|---|---|
| 00337cd3aa | |||
| feea36b190 | |||
| b1bdf628f2 | |||
| 1940d89352 | |||
| 3cc4984b14 | |||
| 3c8c8561b2 |
7 changed files with 44 additions and 47 deletions
|
|
@ -9,3 +9,9 @@ Run the install scripts for [Vegvisir](https://vegvisir.vlw.se/install) and/or [
|
||||||
```
|
```
|
||||||
composer require vlw/scaffold
|
composer require vlw/scaffold
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Refer to the code comments in each file for documentation about its function. The base namespace is `vlw\Scaffold` and each class and function can be `use`d that way. For example:
|
||||||
|
|
||||||
|
```php
|
||||||
|
use vlw\Scaffold\Database\Model;
|
||||||
|
```
|
||||||
|
|
@ -1,14 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation at:
|
|
||||||
* https://codeberg.org/vlw/scaffold/docs/API/API.md
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vlw\Scaffold\API;
|
namespace vlw\Scaffold\API;
|
||||||
|
|
||||||
use Reflect\Rules\Ruleset;
|
use Reflect\Rules\Ruleset;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrapper for Reflect API endpoints
|
||||||
|
*/
|
||||||
class API {
|
class API {
|
||||||
/**
|
/**
|
||||||
* Create a new API request with automatic request validation
|
* Create a new API request with automatic request validation
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation at:
|
|
||||||
* https://codeberg.org/vlw/scaffold/docs/Database/Database.md
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vlw\Scaffold\Database;
|
namespace vlw\Scaffold\Database;
|
||||||
|
|
||||||
use vlw\MySQL\MySQL;
|
use vlw\MySQL\MySQL;
|
||||||
|
|
@ -13,6 +8,9 @@
|
||||||
|
|
||||||
require_once dirname(__DIR__, 1) . "/Helpers/Paginate.php";
|
require_once dirname(__DIR__, 1) . "/Helpers/Paginate.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wrapper for vlw\MySQL which reads credentials from .env.ini in the project root.
|
||||||
|
*/
|
||||||
class Database extends MySQL {
|
class Database extends MySQL {
|
||||||
public const DATE_FORMAT = "Y-m-d";
|
public const DATE_FORMAT = "Y-m-d";
|
||||||
public const DATETIME_FORMAT = "Y-m-d H:i:s";
|
public const DATETIME_FORMAT = "Y-m-d H:i:s";
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation at:
|
|
||||||
* https://codeberg.org/vlw/scaffold/docs/Database/Model.md
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vlw\Scaffold\Database;
|
namespace vlw\Scaffold\Database;
|
||||||
|
|
||||||
use vlw\Scaffold\Database\Database;
|
use vlw\Scaffold\Database\Database;
|
||||||
|
|
||||||
require_once "Database.php";
|
require_once "Database.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract reading, creating, and updating of database entities.
|
||||||
|
*/
|
||||||
abstract class Model {
|
abstract class Model {
|
||||||
const DATE_FORMAT = Database::DATE_FORMAT;
|
const DATE_FORMAT = Database::DATE_FORMAT;
|
||||||
|
|
||||||
|
|
@ -57,7 +55,7 @@
|
||||||
|
|
||||||
$this->_resolved = true;
|
$this->_resolved = true;
|
||||||
$this->_row = $this->db
|
$this->_row = $this->db
|
||||||
->for($this->table)
|
->from($this->table)
|
||||||
->where($this->where)
|
->where($this->where)
|
||||||
->limit(1)
|
->limit(1)
|
||||||
->select($this->columns)
|
->select($this->columns)
|
||||||
|
|
@ -74,10 +72,9 @@
|
||||||
*
|
*
|
||||||
* @return bool Entity exists
|
* @return bool Entity exists
|
||||||
*/
|
*/
|
||||||
public bool $isset {
|
public function isset(): bool {
|
||||||
// Returns bool if row is set or attempts to resolve and set if null
|
return $this->_isset ??= new Database()
|
||||||
get => $this->_isset ??= new Database()
|
->from($this->table)
|
||||||
->for($this->table)
|
|
||||||
->where($this->where)
|
->where($this->where)
|
||||||
->limit(1)
|
->limit(1)
|
||||||
->select()
|
->select()
|
||||||
|
|
@ -105,7 +102,7 @@
|
||||||
$this->_row[$key] = $value;
|
$this->_row[$key] = $value;
|
||||||
|
|
||||||
return $this->db
|
return $this->db
|
||||||
->for($this->table)
|
->from($this->table)
|
||||||
->where($this->where)
|
->where($this->where)
|
||||||
->update([$key => $value]);
|
->update([$key => $value]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation at:
|
|
||||||
* https://codeberg.org/vlw/scaffold/docs/Database/Paginate.md
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vlw\Scaffold\Helpers;
|
namespace vlw\Scaffold\Helpers;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paginate items of any kind. This class is deisgned to work well with
|
||||||
|
* vlw\MySQL and the Scaffold\Database\Database class.
|
||||||
|
*/
|
||||||
class Paginate {
|
class Paginate {
|
||||||
public const KEY = "p";
|
public const KEY = "p";
|
||||||
public const DEFAULT_RANGE = 3;
|
public const DEFAULT_RANGE = 3;
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
|
||||||
* Read the documentation at:
|
|
||||||
* https://codeberg.org/vlw/scaffold/docs/Helpers/UUID.md
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace vlw\Scaffold\Helpers;
|
namespace vlw\Scaffold\Helpers;
|
||||||
|
|
||||||
|
const UUID_LENGTH = 36;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate an all binary 0:s UUID
|
* Generate an all binary 0:s UUID
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,14 @@
|
||||||
use VV;
|
use VV;
|
||||||
use Reflect\Path;
|
use Reflect\Path;
|
||||||
|
|
||||||
|
class Scaffold {
|
||||||
/**
|
/**
|
||||||
* Include a source file from either Vegvisir or Reflect
|
* Include a source file
|
||||||
*
|
*
|
||||||
* @param string $pathname Relative path from project root to a source file
|
* @param string $pathname Relative path from project root to a source file
|
||||||
*/
|
*/
|
||||||
function load(string $pathname): void {
|
public static function load(string $pathname): void {
|
||||||
// Load the Vegvisir VV clas from Reflect
|
// Load the Vegvisir VV class from Reflect
|
||||||
if (!class_exists("VV")) {
|
if (!class_exists("VV")) {
|
||||||
require_once Path::root("vegvisir/src/kernel/Init.php");
|
require_once Path::root("vegvisir/src/kernel/Init.php");
|
||||||
require_once Path::root("vegvisir/src/request/VV.php");
|
require_once Path::root("vegvisir/src/request/VV.php");
|
||||||
|
|
@ -19,3 +20,4 @@
|
||||||
|
|
||||||
require_once VV::root($pathname);
|
require_once VV::root($pathname);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue