feat: item-attachments CRUD (#22)

* change /content/ -> /homebox/

* add cache to code generators

* update env variables to set data storage

* update env variables

* set env variables in prod container

* implement attachment post route (WIP)

* get attachment endpoint

* attachment download

* implement string utilities lib

* implement generic drop zone

* use explicit truncate

* remove clean dir

* drop strings composable for lib

* update item types and add attachments

* add attachment API

* implement service context

* consolidate API code

* implement editing attachments

* implement upload limit configuration

* improve error handling

* add docs for max upload size

* fix test cases
This commit is contained in:
Hayden 2022-09-24 11:33:38 -08:00 committed by GitHub
parent 852d312ba7
commit 31b34241e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
165 changed files with 2509 additions and 664 deletions

View file

@ -4,7 +4,7 @@ import (
"entgo.io/ent"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// Attachment holds the schema definition for the Attachment entity.

View file

@ -7,7 +7,7 @@ import (
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// AuthTokens holds the schema definition for the AuthTokens entity.

View file

@ -5,7 +5,7 @@ import (
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// Document holds the schema definition for the Document entity.

View file

@ -7,7 +7,7 @@ import (
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// DocumentToken holds the schema definition for the DocumentToken entity.

View file

@ -5,7 +5,7 @@ import (
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// Group holds the schema definition for the Group entity.

View file

@ -6,7 +6,7 @@ import (
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"entgo.io/ent/schema/index"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// Item holds the schema definition for the Item entity.

View file

@ -6,7 +6,7 @@ import (
"entgo.io/ent"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// ItemField holds the schema definition for the ItemField entity.

View file

@ -5,7 +5,7 @@ import (
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// Label holds the schema definition for the Label entity.

View file

@ -4,7 +4,7 @@ import (
"entgo.io/ent"
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema/edge"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// Location holds the schema definition for the Location entity.

View file

@ -5,7 +5,7 @@ import (
"entgo.io/ent/dialect/entsql"
"entgo.io/ent/schema/edge"
"entgo.io/ent/schema/field"
"github.com/hay-kot/content/backend/ent/schema/mixins"
"github.com/hay-kot/homebox/backend/ent/schema/mixins"
)
// User holds the schema definition for the User entity.