Added repository files

This commit is contained in:
Elliot Hesp
2014-11-26 11:38:20 +00:00
parent 26e516f739
commit 058d219733
4 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php namespace Cachet\Repositories\Component;
interface ComponentRepository {
public function all();
public function findOrFail($id);
public function incidents($id);
}

View File

@@ -0,0 +1,9 @@
<?php namespace Cachet\Repositories\Component;
use Cachet\Repositories\EloquentRepository;
class EloquentComponentRepository extends EloquentRepository implements ComponentRepository {
}

View File

@@ -0,0 +1,81 @@
<?php namespace Cachet\Repositories;
use Illuminate\Database\Eloquent\ModelNotFoundException;
abstract class EloquentRepository {
/**
* Creates a model with a given array of items
* @param array $array
*/
public function create(array $array) {
$this->model->create($array);
}
/**
* Sets the model to query against a user id
* @param integer $id
* @param string $column
* @return $this
*/
public function withAuth($id, $column = 'user_id') {
$this->model = $this->model->where($column, $id);
return $this;
}
/**
* Finds a model by ID
* @param int $id
* @return object
*/
public function find(int $id) {
return $this->model->find($id);
}
/**
* Finds a model by type
* @param string $key
* @param string $value
* @param array $columns
* @return object|ModelNotFoundException
*/
public function findByOrFail($key, $value, $columns = ['*']) {
if (! is_null($item = $this->model->where($key, $value)->first($columns))) {
return $item;
}
throw new ModelNotFoundException;
}
/**
* Counts the number of rows returned
* @param string $key
* @param string $value
* @return integer
*/
public function count($key = null, $value = null) {
if (is_null($key) || is_null($value)) {
return $this->model->where($key, $value)->count();
}
return $this->model->count();
}
/**
* Deletes a model by ID
* @param inetegr $id
*/
public function destroy($id) {
$this->model->delete($id);
}
/**
* Updates a given model by ID with an array of updates
* @param inetegr $id
* @param array $array Key Value pairs to update
*/
public function update($id, array $array) {
$model = $this->model->whereId($id)->first(['id']);
$model->update($array);
}
}

View File

@@ -0,0 +1,12 @@
<?php namespace Cachet\Support\ServiceProviders;
use Illuminate\Support\ServiceProvider;
class RepositoryServiceProvider extends ServiceProvider {
public function register()
{
$this->app->bind('Cachet\Repositories\Component\ComponentRepository', 'Cachet\Repositories\Component\EloquentComponentRepository');
}
}