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 | |
parent | bd568608bcda0729044e823aedfa799e10692e14 (diff) |
PHP is crap
Diffstat (limited to 'api')
27 files changed, 0 insertions, 895 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'); diff --git a/api/Users/Console/AddUserCommand.php b/api/Users/Console/AddUserCommand.php deleted file mode 100644 index 021d5aa..0000000 --- a/api/Users/Console/AddUserCommand.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php - -namespace Api\Users\Console; - -use Api\Users\Repositories\UserRepository; -use Illuminate\Console\Command; - -class AddUserCommand extends Command -{ - /** - * The name and signature of the console command. - * - * @var string - */ - protected $signature = 'users:add {name} {email} {password}'; - - /** - * The console command description. - * - * @var string - */ - protected $description = 'Adds a new user'; - - /** - * User repository to persist user in database - * - * @var UserRepository - */ - protected $userRepository; - - /** - * Create a new command instance. - * - * @param UserRepository $userRepository - * @return void - */ - public function __construct(UserRepository $userRepository) - { - parent::__construct(); - - $this->userRepository = $userRepository; - } - - /** - * Execute the console command. - * - * @return mixed - */ - public function handle() - { - $user = $this->userRepository->create([ - 'name' => $this->argument('name'), - 'email' => $this->argument('email'), - 'password' => $this->argument('password') - ]); - - $this->info(sprintf('A user was created with ID %s', $user->id)); - } -}
\ No newline at end of file diff --git a/api/Users/Controllers/UserController.php b/api/Users/Controllers/UserController.php deleted file mode 100644 index 5178dcb..0000000 --- a/api/Users/Controllers/UserController.php +++ /dev/null @@ -1,57 +0,0 @@ -<?php - -namespace Api\Users\Controllers; - -use Illuminate\Http\Request; -use Infrastructure\Http\Controller; -use Api\Users\Requests\CreateUserRequest; -use Api\Users\Services\UserService; - -class UserController extends Controller -{ - private $userService; - - public function __construct(UserService $userService) - { - $this->userService = $userService; - } - - public function getAll() - { - $resourceOptions = $this->parseResourceOptions(); - - $data = $this->userService->getAll($resourceOptions); - $parsedData = $this->parseData($data, $resourceOptions, 'users'); - - return $this->response($parsedData); - } - - public function getById($userId) - { - $resourceOptions = $this->parseResourceOptions(); - - $data = $this->userService->getById($userId, $resourceOptions); - $parsedData = $this->parseData($data, $resourceOptions, 'user'); - - return $this->response($parsedData); - } - - public function create(CreateUserRequest $request) - { - $data = $request->get('user', []); - - return $this->response($this->userService->create($data), 201); - } - - public function update($userId, Request $request) - { - $data = $request->get('user', []); - - return $this->response($this->userService->update($userId, $data)); - } - - public function delete($userId) - { - return $this->response($this->userService->delete($userId)); - } -} diff --git a/api/Users/Events/UserWasCreated.php b/api/Users/Events/UserWasCreated.php deleted file mode 100644 index 3975ad3..0000000 --- a/api/Users/Events/UserWasCreated.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Api\Users\Events; - -use Infrastructure\Events\Event; -use Api\Users\Models\User; - -class UserWasCreated extends Event -{ - public $user; - - public function __construct(User $user) - { - $this->user = $user; - } -} diff --git a/api/Users/Events/UserWasDeleted.php b/api/Users/Events/UserWasDeleted.php deleted file mode 100644 index bfd7cff..0000000 --- a/api/Users/Events/UserWasDeleted.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Api\Users\Events; - -use Infrastructure\Events\Event; -use Api\Users\Models\User; - -class UserWasDeleted extends Event -{ - public $user; - - public function __construct(User $user) - { - $this->user = $user; - } -} diff --git a/api/Users/Events/UserWasUpdated.php b/api/Users/Events/UserWasUpdated.php deleted file mode 100644 index 02658d1..0000000 --- a/api/Users/Events/UserWasUpdated.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php - -namespace Api\Users\Events; - -use Infrastructure\Events\Event; -use Api\Users\Models\User; - -class UserWasUpdated extends Event -{ - public $user; - - public function __construct(User $user) - { - $this->user = $user; - } -} diff --git a/api/Users/Exceptions/UserNotFoundException.php b/api/Users/Exceptions/UserNotFoundException.php deleted file mode 100644 index 13fb40e..0000000 --- a/api/Users/Exceptions/UserNotFoundException.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -namespace Api\Users\Exceptions; - -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; - -class UserNotFoundException extends NotFoundHttpException -{ - public function __construct() - { - parent::__construct('The user was not found.'); - } -} diff --git a/api/Users/Models/User.php b/api/Users/Models/User.php deleted file mode 100644 index e568608..0000000 --- a/api/Users/Models/User.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Api\Users\Models; - -use Laravel\Passport\HasApiTokens; -use Illuminate\Notifications\Notifiable; -use Illuminate\Foundation\Auth\User as Authenticatable; - -class User extends Authenticatable -{ - use HasApiTokens, Notifiable; - - /** - * The attributes that are mass assignable. - * - * @var array - */ - protected $fillable = [ - 'name', 'email', 'password', - ]; - - /** - * The attributes that should be hidden for arrays. - * - * @var array - */ - protected $hidden = [ - 'password', 'remember_token', - ]; - - public function posts() - { - return $this->hasMany('Api\Posts\Models\Post'); - } -} diff --git a/api/Users/Repositories/UserRepository.php b/api/Users/Repositories/UserRepository.php deleted file mode 100644 index 68416df..0000000 --- a/api/Users/Repositories/UserRepository.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php - -namespace Api\Users\Repositories; - -use Api\Users\Models\User; -use Infrastructure\Database\Eloquent\Repository; - -class UserRepository extends Repository -{ - public function getModel() - { - return new User(); - } - - public function create(array $data) - { - $user = $this->getModel(); - - $data['password'] = password_hash($data['password'], PASSWORD_BCRYPT); - - $user->fill($data); - $user->save(); - - return $user; - } - - public function update(User $user, array $data) - { - $user->fill($data); - - $user->save(); - - return $user; - } -} diff --git a/api/Users/Requests/CreateUserRequest.php b/api/Users/Requests/CreateUserRequest.php deleted file mode 100644 index c168eb2..0000000 --- a/api/Users/Requests/CreateUserRequest.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Api\Users\Requests; - -use Infrastructure\Http\ApiRequest; - -class CreateUserRequest extends ApiRequest -{ - public function authorize() - { - return true; - } - - public function rules() - { - return [ - 'user' => 'array|required', - 'user.email' => 'required|email', - 'user.name' => 'required|string', - 'user.password' => 'required|string|min:8' - ]; - } - - public function attributes() - { - return [ - 'user.email' => 'the user\'s email' - ]; - } -} diff --git a/api/Users/Services/UserService.php b/api/Users/Services/UserService.php deleted file mode 100644 index 923acd0..0000000 --- a/api/Users/Services/UserService.php +++ /dev/null @@ -1,88 +0,0 @@ -<?php - -namespace Api\Users\Services; - -use Exception; -use Illuminate\Auth\AuthManager; -use Illuminate\Database\DatabaseManager; -use Illuminate\Events\Dispatcher; -use Api\Users\Exceptions\UserNotFoundException; -use Api\Users\Events\UserWasCreated; -use Api\Users\Events\UserWasDeleted; -use Api\Users\Events\UserWasUpdated; -use Api\Users\Repositories\UserRepository; - -class UserService -{ - private $auth; - - private $database; - - private $dispatcher; - - private $userRepository; - - public function __construct( - AuthManager $auth, - DatabaseManager $database, - Dispatcher $dispatcher, - UserRepository $userRepository - ) { - $this->auth = $auth; - $this->database = $database; - $this->dispatcher = $dispatcher; - $this->userRepository = $userRepository; - } - - public function getAll($options = []) - { - return $this->userRepository->get($options); - } - - public function getById($userId, array $options = []) - { - $user = $this->getRequestedUser($userId); - - return $user; - } - - public function create($data) - { - $user = $this->userRepository->create($data); - - $this->dispatcher->fire(new UserWasCreated($user)); - - return $user; - } - - public function update($userId, array $data) - { - $user = $this->getRequestedUser($userId); - - $this->userRepository->update($user, $data); - - $this->dispatcher->fire(new UserWasUpdated($user)); - - return $user; - } - - public function delete($userId) - { - $user = $this->getRequestedUser($userId); - - $this->userRepository->delete($userId); - - $this->dispatcher->fire(new UserWasDeleted($user)); - } - - private function getRequestedUser($userId) - { - $user = $this->userRepository->getById($userId); - - if (is_null($user)) { - throw new UserNotFoundException(); - } - - return $user; - } -} diff --git a/api/Users/UserServiceProvider.php b/api/Users/UserServiceProvider.php deleted file mode 100644 index af59a79..0000000 --- a/api/Users/UserServiceProvider.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -namespace Api\Users; - -use Infrastructure\Events\EventServiceProvider; -use Api\Users\Events\UserWasCreated; -use Api\Users\Events\UserWasDeleted; -use Api\Users\Events\UserWasUpdated; - -class UserServiceProvider extends EventServiceProvider -{ - protected $listen = [ - UserWasCreated::class => [ - // listeners for when a user is created - ], - UserWasDeleted::class => [ - // listeners for when a user is deleted - ], - UserWasUpdated::class => [ - // listeners for when a user is updated - ] - ]; -} diff --git a/api/Users/routes.php b/api/Users/routes.php deleted file mode 100644 index f24f0c0..0000000 --- a/api/Users/routes.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -$router->get('/users', 'UserController@getAll'); -$router->get('/users/{id}', 'UserController@getById'); -$router->post('/users', 'UserController@create'); -$router->put('/users/{id}', 'UserController@update'); -$router->delete('/users/{id}', 'UserController@delete'); |