diff options
author | Marvin Borner | 2018-10-30 18:41:29 +0100 |
---|---|---|
committer | Marvin Borner | 2018-10-30 18:41:29 +0100 |
commit | 39aa8530424310663c888f9e02224158961532e3 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /api/Posts | |
parent | bd568608bcda0729044e823aedfa799e10692e14 (diff) |
PHP is crap
Diffstat (limited to 'api/Posts')
-rw-r--r-- | api/Posts/Console/AddPostCommand.php | 59 | ||||
-rw-r--r-- | api/Posts/Controllers/PostController.php | 57 | ||||
-rw-r--r-- | api/Posts/Events/PostWasCreated.php | 16 | ||||
-rw-r--r-- | api/Posts/Events/PostWasDeleted.php | 16 | ||||
-rw-r--r-- | api/Posts/Events/PostWasUpdated.php | 16 | ||||
-rw-r--r-- | api/Posts/Exceptions/PostNotFoundException.php | 13 | ||||
-rw-r--r-- | api/Posts/Models/MediaPost.php | 28 | ||||
-rw-r--r-- | api/Posts/Models/Post.php | 41 | ||||
-rw-r--r-- | api/Posts/Models/PostType.php | 19 | ||||
-rw-r--r-- | api/Posts/Models/TextPost.php | 28 | ||||
-rw-r--r-- | api/Posts/PostServiceProvider.php | 23 | ||||
-rw-r--r-- | api/Posts/Repositories/PostRepository.php | 60 | ||||
-rw-r--r-- | api/Posts/Requests/CreatePostRequest.php | 30 | ||||
-rw-r--r-- | api/Posts/Services/PostService.php | 87 | ||||
-rw-r--r-- | api/Posts/routes.php | 7 |
15 files changed, 0 insertions, 500 deletions
diff --git a/api/Posts/Console/AddPostCommand.php b/api/Posts/Console/AddPostCommand.php deleted file mode 100644 index 977afb6..0000000 --- a/api/Posts/Console/AddPostCommand.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -namespace Api\Posts\Console; - -use Api\Posts\Repositories\PostRepository; -use Illuminate\Console\Command; - -class AddPostCommand extends Command -{ - /** - * The name and signature of the console command. - * - * @var string - */ - protected $signature = 'posts:add {name} {email} {password}'; - - /** - * The console command description. - * - * @var string - */ - protected $description = 'Adds a new post'; - - /** - * Post repository to persist post in database - * - * @var PostRepository - */ - protected $postRepository; - - /** - * Create a new command instance. - * - * @param PostRepository $postRepository - * @return void - */ - public function __construct(PostRepository $postRepository) - { - parent::__construct(); - - $this->postRepository = $postRepository; - } - - /** - * Execute the console command. - * - * @return mixed - */ - public function handle() - { - $post = $this->postRepository->create([ - 'name' => $this->argument('name'), - 'email' => $this->argument('email'), - 'password' => $this->argument('password') - ]); - - $this->info(sprintf('A post was created with ID %s', $post->id)); - } -}
\ No newline at end of file diff --git a/api/Posts/Controllers/PostController.php b/api/Posts/Controllers/PostController.php deleted file mode 100644 index 105c7c2..0000000 --- a/api/Posts/Controllers/PostController.php +++ /dev/null @@ -1,57 +0,0 @@ -<?php - -namespace Api\Posts\Controllers; - -use Illuminate\Http\Request; -use Infrastructure\Http\Controller; -use Api\Posts\Requests\CreatePostRequest; -use Api\Posts\Services\PostService; - -class PostController extends Controller -{ - private $postService; - - public function __construct(PostService $postService) - { - $this->postService = $postService; - } - - public function getAll() - { - $resourceOptions = $this->parseResourceOptions(); - - $data = $this->postService->getAll($resourceOptions); - $parsedData = $this->parseData($data, $resourceOptions, 'posts'); - - return $this->response($parsedData); - } - - public function getById($postId) - { - $resourceOptions = $this->parseResourceOptions(); - - $data = $this->postService->getById($postId, $resourceOptions); - $parsedData = $this->parseData($data, $resourceOptions, 'post'); - - return $this->response($parsedData); - } - - public function create(CreatePostRequest $request) - { - $data = $request->get('post', []); - - return $this->response($this->postService->create($data), 201); - } - - public function update($postId, Request $request) - { - $data = $request->get('post', []); - - return $this->response($this->postService->update($postId, $data)); - } - - public function delete($postId) - { - return $this->response($this->postService->delete($postId)); - } -} diff --git a/api/Posts/Events/PostWasCreated.php b/api/Posts/Events/PostWasCreated.php deleted file mode 100644 index 8cdcbf8..0000000 --- a/api/Posts/Events/PostWasCreated.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Api\Posts\Events; - -use Infrastructure\Events\Event; -use Api\Posts\Models\Post; - -class PostWasCreated extends Event -{ - public $post; - - public function __construct(Post $post) - { - $this->post = $post; - } -} diff --git a/api/Posts/Events/PostWasDeleted.php b/api/Posts/Events/PostWasDeleted.php deleted file mode 100644 index 5def797..0000000 --- a/api/Posts/Events/PostWasDeleted.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Api\Posts\Events; - -use Infrastructure\Events\Event; -use Api\Posts\Models\Post; - -class PostWasDeleted extends Event -{ - public $post; - - public function __construct(Post $post) - { - $this->post = $post; - } -} diff --git a/api/Posts/Events/PostWasUpdated.php b/api/Posts/Events/PostWasUpdated.php deleted file mode 100644 index 441e884..0000000 --- a/api/Posts/Events/PostWasUpdated.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Api\Posts\Events; - -use Infrastructure\Events\Event; -use Api\Posts\Models\Post; - -class PostWasUpdated extends Event -{ - public $post; - - public function __construct(Post $post) - { - $this->post = $post; - } -} diff --git a/api/Posts/Exceptions/PostNotFoundException.php b/api/Posts/Exceptions/PostNotFoundException.php deleted file mode 100644 index 2f9c55d..0000000 --- a/api/Posts/Exceptions/PostNotFoundException.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -namespace Api\Posts\Exceptions; - -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; - -class PostNotFoundException extends NotFoundHttpException -{ - public function __construct() - { - parent::__construct('The post was not found.'); - } -} diff --git a/api/Posts/Models/MediaPost.php b/api/Posts/Models/MediaPost.php deleted file mode 100644 index e6f1629..0000000 --- a/api/Posts/Models/MediaPost.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Api\Posts\Models; - -use Laravel\Passport\HasApiTokens; -use Illuminate\Notifications\Notifiable; -use Illuminate\Database\Eloquent\Model; - -class MediaPost extends Model -{ - use HasApiTokens, Notifiable; - - protected $table = "media_posts"; - - /** - * The attributes that are mass assignable. - * - * @var array - */ - protected $fillable = [ - 'description', 'media_path' - ]; - - public function post() - { - return $this->belongsTo('Api\Posts\Models\Post'); - } -} diff --git a/api/Posts/Models/Post.php b/api/Posts/Models/Post.php deleted file mode 100644 index b907808..0000000 --- a/api/Posts/Models/Post.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -namespace Api\Posts\Models; - -use Illuminate\Database\Eloquent\Model; -use Illuminate\Notifications\Notifiable; -use Laravel\Passport\HasApiTokens; - -class Post extends Model -{ - use HasApiTokens, Notifiable; - - /** - * The attributes that are mass assignable. - * - * @var array - */ - protected $fillable = [ - 'post_types_id', 'user_id' - ]; - - public function user() - { - return $this->belongsTo('Api\Users\Models\User'); - } - - public function post_type() - { - return $this->belongsTo('Api\Posts\Models\PostType', 'post_types_id', 'id'); - } - - public function media_post() - { - return $this->hasOne('Api\Posts\Models\MediaPost'); - } - - public function text_post() - { - return $this->hasOne('Api\Posts\Models\TextPost'); - } -} diff --git a/api/Posts/Models/PostType.php b/api/Posts/Models/PostType.php deleted file mode 100644 index de8d0f3..0000000 --- a/api/Posts/Models/PostType.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -namespace Api\Posts\Models; - -use Illuminate\Database\Eloquent\Model; -use Illuminate\Notifications\Notifiable; -use Laravel\Passport\HasApiTokens; - -class PostType extends Model -{ - use HasApiTokens, Notifiable; - - protected $table = "post_types"; - - public function posts() - { - return $this->hasMany('Api\Posts\Models\Post', 'post_types_id', 'id'); - } -} diff --git a/api/Posts/Models/TextPost.php b/api/Posts/Models/TextPost.php deleted file mode 100644 index 30593a1..0000000 --- a/api/Posts/Models/TextPost.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php - -namespace Api\Posts\Models; - -use Laravel\Passport\HasApiTokens; -use Illuminate\Notifications\Notifiable; -use Illuminate\Database\Eloquent\Model; - -class TextPost extends Model -{ - use HasApiTokens, Notifiable; - - protected $table = "text_posts"; - - /** - * The attributes that are mass assignable. - * - * @var array - */ - protected $fillable = [ - 'description', 'text' - ]; - - public function post() - { - return $this->belongsTo('Api\Posts\Models\Post'); - } -} diff --git a/api/Posts/PostServiceProvider.php b/api/Posts/PostServiceProvider.php deleted file mode 100644 index 181b308..0000000 --- a/api/Posts/PostServiceProvider.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Api\Posts; - -use Infrastructure\Events\EventServiceProvider; -use Api\Posts\Events\PostWasCreated; -use Api\Posts\Events\PostWasDeleted; -use Api\Posts\Events\PostWasUpdated; - -class PostServiceProvider extends EventServiceProvider -{ - protected $listen = [ - PostWasCreated::class => [ - // listeners for when a post is created - ], - PostWasDeleted::class => [ - // listeners for when a post is deleted - ], - PostWasUpdated::class => [ - // listeners for when a post is updated - ] - ]; -} diff --git a/api/Posts/Repositories/PostRepository.php b/api/Posts/Repositories/PostRepository.php deleted file mode 100644 index c554e82..0000000 --- a/api/Posts/Repositories/PostRepository.php +++ /dev/null @@ -1,60 +0,0 @@ -<?php - -namespace Api\Posts\Repositories; - -use Api\Posts\Models\Post; -use Infrastructure\Database\Eloquent\Repository; - -class PostRepository extends Repository -{ - public function getModel() - { - return new Post(); - } - - public function getJoined($options) - { - $query = Post::query()->with('post_type'); - $this->applyResourceOptions($query, $options); - $posts = $query->get(); - $joinedPosts = []; - - foreach ($posts as $post) { - $postType = 'Api\Posts\Models\\' . $post["post_type"]["type"] . 'Post'; - $postTypeClass = new $postType(); - $post["post"] = $postTypeClass::query()->where('id', $post->id)->first(); - array_push($joinedPosts, $post); - } - return $joinedPosts; - } - - public function getJoinedById($postId) - { - $query = Post::query()->with('post_type')->where('id', $postId); - $post = $query->first(); - - $postType = 'Api\Posts\Models\\' . $post["post_type"]["type"] . 'Post'; - $postTypeClass = new $postType(); - $post["post"] = $postTypeClass::query()->where('id', $post["id"])->first(); - return $post; - } - - public function create(array $data) - { - $post = $this->getModel(); - - $post->fill($data); - $post->save(); - - return $post; - } - - public function update(Post $post, array $data) - { - $post->fill($data); - - $post->save(); - - return $post; - } -} diff --git a/api/Posts/Requests/CreatePostRequest.php b/api/Posts/Requests/CreatePostRequest.php deleted file mode 100644 index be777ac..0000000 --- a/api/Posts/Requests/CreatePostRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Api\Posts\Requests; - -use Infrastructure\Http\ApiRequest; - -class CreatePostRequest extends ApiRequest -{ - public function authorize() - { - return true; - } - - public function rules() - { - return [ - 'post' => 'array|required', - 'post.email' => 'required|email', - 'post.name' => 'required|string', - 'post.password' => 'required|string|min:8' - ]; - } - - public function attributes() - { - return [ - 'post.email' => 'the post\'s email' - ]; - } -} diff --git a/api/Posts/Services/PostService.php b/api/Posts/Services/PostService.php deleted file mode 100644 index 0232af2..0000000 --- a/api/Posts/Services/PostService.php +++ /dev/null @@ -1,87 +0,0 @@ -<?php - -namespace Api\Posts\Services; - -use Api\Posts\Events\PostWasCreated; -use Api\Posts\Events\PostWasDeleted; -use Api\Posts\Events\PostWasUpdated; -use Api\Posts\Exceptions\PostNotFoundException; -use Api\Posts\Repositories\PostRepository; -use Illuminate\Auth\AuthManager; -use Illuminate\Database\DatabaseManager; -use Illuminate\Events\Dispatcher; - -class PostService -{ - private $auth; - - private $database; - - private $dispatcher; - - private $postRepository; - - public function __construct( - AuthManager $auth, - DatabaseManager $database, - Dispatcher $dispatcher, - PostRepository $postRepository - ) { - $this->auth = $auth; - $this->database = $database; - $this->dispatcher = $dispatcher; - $this->postRepository = $postRepository; - } - - public function getAll($options = []) - { - return $this->postRepository->getJoined($options); - } - - public function getById($postId, array $options = []) - { - $post = $this->getRequestedPost($postId); - - return $post; - } - - public function create($data) - { - $post = $this->postRepository->create($data); - - $this->dispatcher->fire(new PostWasCreated($post)); - - return $post; - } - - public function update($postId, array $data) - { - $post = $this->getRequestedPost($postId); - - $this->postRepository->update($post, $data); - - $this->dispatcher->fire(new PostWasUpdated($post)); - - return $post; - } - - public function delete($postId) - { - $post = $this->getRequestedPost($postId); - - $this->postRepository->delete($postId); - - $this->dispatcher->fire(new PostWasDeleted($post)); - } - - private function getRequestedPost($postId) - { - $post = $this->postRepository->getJoinedById($postId); - - if (is_null($post)) { - throw new PostNotFoundException(); - } - - return $post; - } -} diff --git a/api/Posts/routes.php b/api/Posts/routes.php deleted file mode 100644 index c3b90e4..0000000 --- a/api/Posts/routes.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php -// type [text, media] as get parameter (/posts?type=media,text) -$router->get('/posts', 'PostController@getAll'); -$router->get('/posts/{id}', 'PostController@getById'); -$router->post('/posts', 'PostController@create'); -$router->put('/posts/{id}', 'PostController@update'); -$router->delete('/posts/{id}', 'PostController@delete'); |