123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <?php
- namespace App\Controllers\Api;
- use App\Models\NoteModel;
- use App\Models\NoteTagModel;
- use App\Models\TagModel;
- use App\Utils\Crypt;
- use App\Utils\DB;
- use PH7\JustHttp\StatusCode;
- use Respect\Validation\Exceptions\NestedValidationException;
- use Respect\Validation\Validator as v;
- class NoteController
- {
- /*
- * Obtiene las reglas de validación.
- */
- private function getValidationRules()
- {
- return [
- 'id' => v::stringType()->notEmpty()->Uuid(),
- 'title' => v::stringType()->notEmpty()->length(1, 255, true),
- 'body' => v::stringType()->notEmpty()->length(1, pow(2, 16) - 1, true),
- 'tags' => v::arrayType()->each(v::stringType()->notEmpty()->Uuid())
- ];
- }
- /*
- * Registra la nota de un usuario.
- */
- public function create($req, $res)
- {
- $data = [];
- $rules = $this->getValidationRules();
- // Selecciona solo los campos necesarios.
- $fields = array_diff(array_keys($rules), ['id']);
- // Obtiene los campos del cuerpo de la petición.
- foreach ($fields as $field) {
- if (v::key($field, v::notOptional(), true)->validate($req->body)) {
- $data[$field] = $req->body[$field];
- }
- }
- // Asegura este tipo de valor para los tags de la nota si se encuentra presente.
- if (v::key('tags', v::notOptional()->equals('[]'), true)->validate($data)) {
- $data['tags'] = [];
- }
- // Comprueba los campos del cuerpo de la petición.
- try {
- v::key('title', $rules['title'], true)
- ->key('body', $rules['body'], true)
- ->key('tags', $rules['tags'], false)
- ->assert($data);
- } catch (NestedValidationException $e) {
- $res->status(StatusCode::BAD_REQUEST)->json([
- 'validations' => $e->getMessages()
- ]);
- }
- $userAuth = $req->app->local('userAuth');
- $tags = [];
- // Comprueba que los tags se encuentren registrados.
- if (v::key('tags', v::notOptional()->notEmpty(), true)->validate($data)) {
- $query = TagModel::factory()->select('id');
- $params = [];
- foreach ($data['tags'] as $key => $value) {
- $paramName = ':id_' . $key;
- $query->param($paramName, $value);
- $params[] = $paramName;
- }
- $query->where(sprintf('id IN(%s)', implode(',', $params)));
- // Consulta la información de los tags del usuario a relacionar en la nota.
- $tags = $query->where('user_id', $userAuth['id'])->get();
- // Comprueba que los tags enviados estén registrados.
- if (array_diff($data['tags'], array_column($tags, 'id'))) {
- $res->status(StatusCode::NOT_FOUND)->json([
- 'error' => 'The tags to add cannot be found'
- ]);
- }
- }
- unset($data['tags']);
- $crypt = new Crypt($userAuth['id']);
- // Encripta el contenido de la nota.
- $data['body'] = $crypt->encrypt(trim($data['body']));
- // Genera el UUID de la nueva nota.
- $data['id'] = DB::generateUuid();
- // Relaciona la nota al usuario.
- $data['user_id'] = $userAuth['id'];
- // Elimina espacios sobrantes del título de la nota.
- $data['title'] = trim($data['title']);
- $data['created_at'] = $data['updated_at'] = DB::datetime();
- $noteModel = NoteModel::factory();
- // Registra la información de la nueva nota.
- $noteModel->insert($data);
- $noteTagModel = NoteTagModel::factory();
- // Relaciona los tags de la nota registrada.
- if (!empty($tags)) {
- foreach ($tags as $tag) {
- $datetime = DB::datetime();
- $noteTagModel->reset()->insert([
- 'id' => DB::generateUuid(),
- 'note_id' => $data['id'],
- 'tag_id' => $tag['id'],
- 'created_at' => $datetime,
- 'updated_at' => $datetime
- ]);
- }
- }
- // Consulta la información de la nota registrada.
- $newNote = $noteModel
- ->reset()
- ->select('id, user_id, title, created_at, updated_at')
- ->find($data['id']);
- // Consulta los tags de la nota registrada.
- $newNote['tags'] = $noteTagModel
- ->reset()
- ->select('tags.id, tags.name')
- ->tags()
- ->where('notes_tags.note_id', $newNote['id'])
- ->orderBy('tags.name ASC')
- ->get();
- $res->status(StatusCode::CREATED)->json([
- 'data' => $newNote
- ]);
- }
- /*
- * Consulta las notas de un usuario.
- */
- public function index($req, $res)
- {
- $userAuth = $req->app->local('userAuth');
- $noteModel = NoteModel::factory();
- // Consulta la información de las notas del usuario.
- $notes = $noteModel
- ->select('notes.id, notes.user_id, notes.title, notes.created_at, notes.updated_at')
- ->where('notes.user_id', $userAuth['id'])
- ->orderBy('notes.updated_at DESC')
- ->get();
- $noteTagModel = NoteTagModel::factory();
- // Consulta los tags de las notas del usuario.
- foreach ($notes as &$note) {
- $note['tags'] = $noteTagModel
- ->reset()
- ->select('tags.id, tags.name')
- ->tags()
- ->where('notes_tags.note_id', $note['id'])
- ->orderBy('tags.name ASC')
- ->get();
- }
- unset($note);
- $res->json([
- 'data' => $notes
- ]);
- }
- /*
- * Consulta la información de
- * la nota de un usuario.
- */
- public function show($req, $res)
- {
- $params = $req->params;
- $rules = $this->getValidationRules();
- // Comprueba los parámetros de la ruta.
- try {
- v::key('uuid', $rules['id'], true)->assert($params);
- } catch (NestedValidationException $e) {
- $res->status(StatusCode::BAD_REQUEST)->json([
- 'error' => $e->getMessage()
- ]);
- }
- $userAuth = $req->app->local('userAuth');
- // Consulta la información de la nota.
- $note = NoteModel::factory()
- ->select('id, user_id, title, body, created_at, updated_at')
- ->where('user_id', $userAuth['id'])
- ->find($params['uuid']);
- // Comprueba que la nota se encuentra registrada.
- if (empty($note)) {
- $res->status(StatusCode::NOT_FOUND)->json([
- 'error' => 'Note cannot be found'
- ]);
- }
- $crypt = new Crypt($userAuth['id']);
- // Desencripta el contenido de la nota.
- $note['body'] = $crypt->decrypt($note['body']);
- // Consulta los tags de la nota.
- $note['tags'] = NoteTagModel::factory()
- ->select('tags.id, tags.name')
- ->tags()
- ->where('notes_tags.note_id', $note['id'])
- ->orderBy('tags.name ASC')
- ->get();
- $res->json([
- 'data' => $note
- ]);
- }
- /*
- * Modifica o actualiza la información
- * de la nota de un usuario.
- */
- public function update($req, $res)
- {
- $params = $req->params;
- $rules = $this->getValidationRules();
- // Comprueba los parámetros de la ruta.
- try {
- v::key('uuid', $rules['id'], true)->assert($params);
- } catch (NestedValidationException $e) {
- $res->status(StatusCode::BAD_REQUEST)->json([
- 'error' => $e->getMessage()
- ]);
- }
- $userAuth = $req->app->local('userAuth');
- $noteModel = NoteModel::factory();
- // Consulta la información de la nota que será modificada.
- $note = $noteModel
- ->select('id')
- ->where('user_id', $userAuth['id'])
- ->find($params['uuid']);
- // Comprueba que la nota se encuentra registrada.
- if (empty($note)) {
- $res->status(StatusCode::NOT_FOUND)->json([
- 'error' => 'Note cannot be found'
- ]);
- }
- $data = [];
- // Selecciona solo los campos necesarios.
- $fields = array_diff(array_keys($rules), ['id']);
- // Obtiene los campos del cuerpo de la petición.
- foreach ($fields as $field) {
- if (v::key($field, v::notOptional(), true)->validate($req->body)) {
- $data[$field] = $req->body[$field];
- }
- }
- // Permite eliminar todos los tags de la nota si se encuentra presente.
- if (v::key('tags', v::notOptional()->equals('[]'), true)->validate($data)) {
- $data['tags'] = [];
- }
- // Comprueba los campos del cuerpo de la petición.
- try {
- v::key('title', $rules['title'], false)
- ->key('body', $rules['body'], false)
- ->key('tags', $rules['tags'], false)
- ->assert($data);
- } catch (NestedValidationException $e) {
- $res->status(StatusCode::BAD_REQUEST)->json([
- 'validations' => $e->getMessages()
- ]);
- }
- /*
- * Limpia espacios sobrantes del título de la nota
- * si se encuentra presente.
- */
- if (v::key('title', v::notOptional(), true)->validate($data)) {
- $data['title'] = trim($data['title']);
- }
- /*
- * Encripta el nuevo contenido de la nota
- * si se encuentra presente.
- */
- if (v::key('body', v::notOptional(), true)->validate($data)) {
- $crypt = new Crypt($userAuth['id']);
- $data['body'] = $crypt->encrypt(trim($data['body']));
- }
- $noteTagModel = NoteTagModel::factory();
- /*
- * Comprueba los tags de la nota que fueron modificados
- * si se encuentra presente.
- */
- if (v::key('tags', v::notOptional(), true)->validate($data)) {
- // Consulta los tags de la nota que será modificada.
- $note['tags'] = $noteTagModel
- ->select('tags.id, tags.name')
- ->tags()
- ->where('notes_tags.note_id', $note['id'])
- ->get();
- $noteTagsIDs = array_column($note['tags'], 'id');
- // Obtiene los nuevos tags relacionados a la nota.
- $newNoteTags = array_diff($data['tags'], $noteTagsIDs);
- // Comprueba y relaciona los nuevos tags a la nota.
- if (!empty($newNoteTags)) {
- $query = TagModel::factory()->select('id');
- $params = [];
- foreach ($newNoteTags as $key => $value) {
- $paramName = ':id_' . $key;
- $query->param($paramName, $value);
- $params[] = $paramName;
- }
- $query->where(sprintf('id IN(%s)', implode(',', $params)));
- // Consulta la información de los nuevos tags a relacionar en la nota.
- $newTagsToAdd = $query->where('user_id', $userAuth['id'])->get();
- // Comprueba que los tags enviados estén registrados.
- if (array_diff($newNoteTags, array_column($newTagsToAdd, 'id'))) {
- $res->status(StatusCode::NOT_FOUND)->json([
- 'error' => 'The new tags to add cannot be found'
- ]);
- }
- // Relaciona los nuevos tags de la nota.
- foreach ($newTagsToAdd as $tag) {
- $datetime = DB::datetime();
- $noteTagModel->reset()->insert([
- 'id' => DB::generateUuid(),
- 'note_id' => $note['id'],
- 'tag_id' => $tag['id'],
- 'created_at' => $datetime,
- 'updated_at' => $datetime
- ]);
- }
- }
- // Obtiene los tags eliminados de la nota.
- $deletedNoteTags = array_diff($noteTagsIDs, $data['tags']);
- // Elimina los tags de la nota.
- if (!empty($deletedNoteTags)) {
- $deleteQuery = $noteTagModel
- ->reset()
- ->where('note_id', $note['id']);
- $deleteParams = [];
- foreach ($deletedNoteTags as $key => $value) {
- $deleteParamName = ':id_' . $key;
- $deleteQuery->param($deleteParamName, $value);
- $deleteParams[] = $deleteParamName;
- }
- // Elimina la información de los tags que no se encuentran.
- $deleteQuery
- ->where(sprintf('tag_id IN(%s)', implode(',', $deleteParams)))
- ->delete();
- }
- }
- unset($data['tags']);
- // Modifica total o parcialmente la información de la nota del usuario.
- if (!empty($data)) {
- $data['updated_at'] = DB::datetime();
- $noteModel
- ->reset()
- ->where('id', $note['id'])
- ->update($data);
- }
- // Consulta la información de la nota modificada.
- $updatedNote = $noteModel
- ->reset()
- ->select('id, user_id, title, created_at, updated_at')
- ->find($note['id']);
- // Consulta los tags de la nota modificada.
- $updatedNote['tags'] = $noteTagModel
- ->reset()
- ->select('tags.id, tags.name')
- ->tags()
- ->where('notes_tags.note_id', $updatedNote['id'])
- ->orderBy('tags.name ASC')
- ->get();
- $res->json([
- 'data' => $updatedNote
- ]);
- }
- /*
- * Elimina la nota de un usuario.
- */
- public function delete($req, $res)
- {
- $params = $req->params;
- $rules = $this->getValidationRules();
- // Comprueba los parámetros de la ruta.
- try {
- v::key('uuid', $rules['id'], true)->assert($params);
- } catch (NestedValidationException $e) {
- $res->status(StatusCode::BAD_REQUEST)->json([
- 'error' => $e->getMessage()
- ]);
- }
- $userAuth = $req->app->local('userAuth');
- $noteModel = NoteModel::factory();
- // Consulta la información de la nota que será eliminada.
- $deletedNote = $noteModel
- ->select('id, user_id, title, created_at, updated_at')
- ->where('user_id', $userAuth['id'])
- ->find($params['uuid']);
- // Comprueba que la nota se encuentra registrada.
- if (empty($deletedNote)) {
- $res->status(StatusCode::NOT_FOUND)->json([
- 'error' => 'Note cannot be found'
- ]);
- }
- // Consulta los tags de la nota que será eliminada.
- $deletedNote['tags'] = NoteTagModel::factory()
- ->select('tags.id, tags.name')
- ->tags()
- ->where('notes_tags.note_id', $deletedNote['id'])
- ->orderBy('tags.name ASC')
- ->get();
- // Elimina la información de la nota.
- $noteModel
- ->reset()
- ->where('id', $deletedNote['id'])
- ->delete();
- $res->json([
- 'data' => $deletedNote
- ]);
- }
- }
|