Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ixnode/yads
Store everything in one place, make connections and share it via an API.
https://github.com/ixnode/yads
api documentstore graphql php8 rest symfony symfony5 yads
Last synced: 10 days ago
JSON representation
Store everything in one place, make connections and share it via an API.
- Host: GitHub
- URL: https://github.com/ixnode/yads
- Owner: ixnode
- Created: 2021-07-31T09:38:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-12T21:41:03.000Z (about 3 years ago)
- Last Synced: 2023-06-30T22:10:26.528Z (over 1 year ago)
- Topics: api, documentstore, graphql, php8, rest, symfony, symfony5, yads
- Language: PHP
- Homepage: https://getyads.org
- Size: 735 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YADS
> *Yet another document store*
Store everything in one place, make connections and share it via an API.
## 1. Run Document Store and API
With the help of [Docker](https://docs.docker.com/get-docker/), setting up this environment is a breeze.
### 1.1 In local environment
```bash
❯ git clone https://github.com/ixnode/yads.git && cd yads
❯ docker-compose up -d
❯ docker-compose exec yads composer install
❯ docker-compose exec yads composer reinitialize-db-prod
```Start now with [API Platform](https://api-platform.com/) at http://localhost:8080/api/v1/docs.html or get all entrypoints via API:
```bash
❯ curl -s http://localhost:8080/api/v1 \
-H 'accept: application/ld+json' | jq .
```API response:
```json
{
"@context": "/api/v1/contexts/Entrypoint",
"@id": "/api/v1",
"@type": "Entrypoint",
"document": "/api/v1/documents",
"documentTag": "/api/v1/document_tags",
"documentType": "/api/v1/document_types",
"graph": "/api/v1/graphs",
"graphRule": "/api/v1/graph_rules",
"graphType": "/api/v1/graph_types",
"role": "/api/v1/roles",
"tag": "/api/v1/tags"
}
```#### DB access
| | DB | Test DB |
|---------|-----------|-------------|
| *host*: | 127.0.0.1 | 127.0.0.1 |
| *port*: | `3333` | `3334` |
| *db*: | `yads` | `yads-test` |
| *user*: | `yads` | `yads` |
| *pass*: | `yads` | `yads` |```bash
❯ mysql -h127.0.0.1 -P3333 -uyads -pyads yads
``````bash
❯ mysql -h127.0.0.1 -P3334 -uyads -pyads yads-test
```#### Some command line commands
```bash
❯ docker-compose exec yads php -v
PHP 8.0.9 (cli) (built: Jul 30 2021 00:29:20) ( NTS )
Copyright (c) The PHP Group
Zend Engine v4.0.9, Copyright (c) Zend Technologies
with Zend OPcache v8.0.9, Copyright (c), by Zend Technologies
❯ docker-compose exec yads bin/console -V
Symfony 5.3.6 (env: dev, debug: true)
❯ docker-compose exec yads composer -V
Composer version 2.1.5 2021-07-23 10:35:47
```#### Choice / alternative
Alternatively, one can also start the Symfony server and only use the Docker database. This variant is more performant than the local Docker variant, especially on the Mac, but requires an installed Symfony client:
```bash
❯ symfony server:ca:install
❯ symfony server:start -d
```Click to view the output of `symfony server:start`
```bash
[OK] Web server listening
The Web server is using PHP FPM 8.0.9
https://127.0.0.1:8004Stream the logs via symfony server:log
```Depending on the output above, start now with [API Platform](https://api-platform.com/) at https://localhost:8004/api/v1/docs.html or get all entrypoints via API:
```bash
❯ curl -s https://localhost:8004/api/v1 \
-H 'accept: application/ld+json' | jq .
```### 1.2 Upkeep
#### Reinitialize db
```bash
❯ composer reinitialize-db-prod
```Click to view the output of `composer reinitialize-db-prod`
```bash
!
! [CAUTION] This operation should not be executed in a production environment!
!Creating database schema...
[OK] Database schema created successfully!
> bin/console doctrine:fixtures:load -n
> purging database
> loading App\DataFixtures\AppFixtures
```## 2. Examples
### Create `DocumentType` entity
#### Create `DocumentType` data
```bash
❯ vi data/json/document.type.task.json
```Click to view content of `data/json/document.type.task.json`
```json
{
"type": "task",
"allowedAttributes": {
"$id": "document.data.task.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Task document data",
"description": "Data from document of type task",
"type": "object",
"additionalProperties": false,
"properties": {
"title": {
"type": "string",
"minLength": 2,
"maxLength": 255,
"description": "The title of the task."
},
"description": {
"type": "string",
"minLength": 10,
"maxLength": 65535,
"description": "The description of the task."
},
"has_date_of_completion": {
"type": "boolean"
},
"date_of_completion": {
"type": "string",
"format": "date",
"description": "The date on which this task must be completed."
}
},
"required": [
"title",
"description",
"has_date_of_completion"
]
},
"defaults": [
"title"
]
}
```#### Post new `DocumentType` entity
```bash
❯ curl -X 'POST' -s \
'https://127.0.0.1:8004/api/v1/document_types' \
-H 'accept: application/ld+json' \
-H 'Content-Type: application/ld+json' \
-d '@data/json/document.type.task.json' | jq .
```Click to view response of POST
```json
{
"@context": "/api/v1/contexts/DocumentType",
"@id": "/api/v1/document_types/1",
"@type": "DocumentType",
"id": 1,
"type": "string",
"allowedAttributes": {
"$id": "document.data.task.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Task document data",
"description": "Data from document of type task",
"type": "object",
"additionalProperties": false,
"properties": {
"title": {
"type": "string",
"minLength": 2,
"maxLength": 255,
"description": "The title of the task."
},
"description": {
"type": "string",
"minLength": 10,
"maxLength": 65535,
"description": "The description of the task."
},
"has_date_of_completion": {
"type": "boolean"
},
"date_of_completion": {
"type": "string",
"format": "date",
"description": "The date on which this task must be completed."
}
},
"required": [
"title",
"description",
"has_date_of_completion"
]
},
"defaults": [
"title"
],
"createdAt": "2021-08-04T21:03:54+00:00",
"updatedAt": "2021-08-04T21:03:54+00:00"
}
```### Create `Document` entity
#### Create `Document` data
```bash
❯ vi data/json/document.task.json
```Click to view content of `document.task.json`
```json
{
"data": {
"title": "Lohnsteuererklärung einrichen",
"description": "Die Lohnsteuererklärung muss eingereicht werden.",
"has_date_of_completion": false
},
"documentType": "/api/v1/document_types/1"
}
```#### Post new `Document` entity
```bash
❯ curl -X 'POST' -s \
'https://127.0.0.1:8004/api/v1/documents' \
-H 'accept: application/ld+json' \
-H 'Content-Type: application/ld+json' \
-d '@data/json/document.task.json' | jq .
```Click to view response of POST
```json
{
"@context": "/api/v1/contexts/Document",
"@id": "/api/v1/documents/1",
"@type": "Document",
"data": {
"title": "Lohnsteuererklärung einrichen",
"description": "Die Lohnsteuererklärung muss eingereicht werden.",
"has_date_of_completion": false
},
"documentType": "/api/v1/document_types/1",
"id": 1,
"createdAt": "2021-08-04T21:47:58+00:00",
"updatedAt": "2021-08-04T21:47:58+00:00"
}
```### Get `Document` entities
#### All entities
```bash
❯ curl -s \
'https://127.0.0.1:8004/api/v1/documents' \
-H 'Content-Type: application/ld+json' | jq .
```Click to view response of GET /api/v1/documents
```json
{
"@context": "/api/v1/contexts/Document",
"@id": "/api/v1/documents",
"@type": "hydra:Collection",
"hydra:member": [
{
"@id": "/api/v1/documents/1",
"@type": "Document",
"data": {
"title": "Lohnsteuererklärung einrichen",
"description": "Die Lohnsteuererklärung muss eingereicht werden.",
"has_date_of_completion": false
},
"documentType": "/api/v1/document_types/1",
"id": 1,
"createdAt": "2021-08-04T21:47:58+00:00",
"updatedAt": "2021-08-04T21:47:58+00:00"
}
],
"hydra:totalItems": 1
}
```#### Single entity
```bash
❯ curl -s \
'https://127.0.0.1:8004/api/v1/documents/1' \
-H 'Content-Type: application/ld+json' | jq .
```Click to view response of GET /api/v1/documents
```json
{
"@context": "/api/v1/contexts/Document",
"@id": "/api/v1/documents/1",
"@type": "Document",
"data": {
"title": "Lohnsteuererklärung einrichen",
"description": "Die Lohnsteuererklärung muss eingereicht werden.",
"has_date_of_completion": false
},
"documentType": "/api/v1/document_types/1",
"id": 1,
"createdAt": "2021-08-04T21:47:58+00:00",
"updatedAt": "2021-08-04T21:47:58+00:00"
}
```