{"id":22104898,"url":"https://github.com/nemeslaszlo/bookstore","last_synced_at":"2026-05-07T11:35:15.975Z","repository":{"id":117465901,"uuid":"339135655","full_name":"NemesLaszlo/BookStore","owner":"NemesLaszlo","description":"Book Store application with book and author management with Customer and Administrator users. With .NET Core and Blazor.","archived":false,"fork":false,"pushed_at":"2021-02-27T19:21:36.000Z","size":343,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T02:44:35.561Z","etag":null,"topics":["blazor","blazor-webassembly","dotnet","entity-framework","mapper","nlog","swagger"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NemesLaszlo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-15T16:22:11.000Z","updated_at":"2021-02-27T19:34:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"e5d9ff12-0578-445a-8398-fb099da0cba3","html_url":"https://github.com/NemesLaszlo/BookStore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NemesLaszlo/BookStore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NemesLaszlo%2FBookStore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NemesLaszlo%2FBookStore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NemesLaszlo%2FBookStore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NemesLaszlo%2FBookStore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NemesLaszlo","download_url":"https://codeload.github.com/NemesLaszlo/BookStore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NemesLaszlo%2FBookStore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32735340,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blazor","blazor-webassembly","dotnet","entity-framework","mapper","nlog","swagger"],"created_at":"2024-12-01T06:36:22.916Z","updated_at":"2026-05-07T11:35:15.958Z","avatar_url":"https://github.com/NemesLaszlo.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BookStore\n\nBook Store application with book and author management with Customer and Administrator users. With .NET Core and Blazor.\n\n- .NET Core\n- AutoMapper\n- NLog\n- Swagger UI\n- Entity Framework Core\n- Repository Pattern\n- Identity and Authentication\n- Security with JSON Web Token\n\n#### Endpoints for the Backend\n\n| Entity | Type   | URL                | Description                                               | Success              | Failure                                                              | Authorize                |\n| ------ | ------ | ------------------ | --------------------------------------------------------- | -------------------- | -------------------------------------------------------------------- | ------------------------ |\n| User   | POST   | api/users/login    | User Login. You are able to login with username or email. | 200 OK and the Token | 500 InternalServerError with a message                               | No                       |\n|        | POST   | api/users/register | User Registration (as a Costumer)                         | 201 Created          | 500 InternalServerError with a message                               | No                       |\n| Author | GET    | api/authors        | Get all authors.                                          | 200 OK               | 500 InternalServerError with a message                               | Yes                      |\n|        | GET    | api/authors/:id    | Get an author by id.                                      | 200 OK               | 404 NotFound; 500 InternalServerError with a message                 | Yes                      |\n|        | POST   | api/authors        | Creates an author.                                        | 201 Created          | 400 BadRequest; 500 InternalServerError with a message               | Yes (Only Administrator) |\n|        | PUT    | api/authors/:id    | Update an author by id.                                   | 204 NoContent        | 400 BadRequest; 404 NotFound; 500 InternalServerError with a message | Yes (Only Administrator) |\n|        | DELETE | api/authors/:id    | Delete an author by id.                                   | 204 NoContent        | 400 BadRequest; 404 NotFound; 500 InternalServerError with a message | Yes (Only Administrator) |\n| Book   | GET    | api/books          | Get all books.                                            | 200 OK               | 500 InternalServerError with a message                               | Yes                      |\n|        | GET    | api/books/:id      | Get a Book by id.                                         | 200 OK               | 404 NotFound; 500 InternalServerError with a message                 | Yes                      |\n|        | POST   | api/books          | Creates a new book.                                       | 201 Created          | 400 BadRequest; 500 InternalServerError with a message               | Yes (Only Administrator) |\n|        | PUT    | api/books/:id      | Update a book by id.                                      | 204 NoContent        | 400 BadRequest; 404 NotFound; 500 InternalServerError with a message | Yes (Only Administrator) |\n|        | DELETE | api/books/:id      | Delete a book by id.                                      | 204 NoContent        | 500 InternalServerError with a message                               | Yes (Only Administrator) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnemeslaszlo%2Fbookstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnemeslaszlo%2Fbookstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnemeslaszlo%2Fbookstore/lists"}