Compare commits
2 Commits
5665d56ce4
...
53e1412772
Author | SHA1 | Date | |
---|---|---|---|
53e1412772 | |||
ad9124ef41 |
@ -3,6 +3,7 @@ package postgres
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
otterError "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/error"
|
otterError "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/error"
|
||||||
|
|
||||||
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/models"
|
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/models"
|
||||||
@ -38,14 +39,14 @@ func CreatePost(ctx context.Context, db *gorm.DB, anthrovePost *models.Post) err
|
|||||||
|
|
||||||
// TODO: Make Tests
|
// TODO: Make Tests
|
||||||
func CreatePostInBatch(ctx context.Context, db *gorm.DB, anthrovePost []models.Post, batchSize int) error {
|
func CreatePostInBatch(ctx context.Context, db *gorm.DB, anthrovePost []models.Post, batchSize int) error {
|
||||||
if len(anthrovePost) == 0 {
|
|
||||||
return &otterError.EntityValidationFailed{Reason: "anthrovePost cannot be empty"}
|
|
||||||
}
|
|
||||||
|
|
||||||
if anthrovePost == nil {
|
if anthrovePost == nil {
|
||||||
return &otterError.EntityValidationFailed{Reason: "anthrovePost cannot be nil"}
|
return &otterError.EntityValidationFailed{Reason: "anthrovePost cannot be nil"}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(anthrovePost) == 0 {
|
||||||
|
return &otterError.EntityValidationFailed{Reason: "anthrovePost cannot be empty"}
|
||||||
|
}
|
||||||
|
|
||||||
if batchSize == 0 {
|
if batchSize == 0 {
|
||||||
return &otterError.EntityValidationFailed{Reason: "batch size cannot be zero"}
|
return &otterError.EntityValidationFailed{Reason: "batch size cannot be zero"}
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@ package models
|
|||||||
type PostReference struct {
|
type PostReference struct {
|
||||||
PostID string `gorm:"primaryKey"`
|
PostID string `gorm:"primaryKey"`
|
||||||
SourceID string `gorm:"primaryKey"`
|
SourceID string `gorm:"primaryKey"`
|
||||||
URL string `gorm:"not null;unique"`
|
URL string `gorm:"primaryKey"`
|
||||||
PostReferenceConfig
|
PostReferenceConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user