Compare commits

...

2 Commits

Author SHA1 Message Date
ericprd
1297c71200 feat: update route ads 2025-03-13 12:00:26 +08:00
ericprd
47085ca0ae fix: add start date and end date of ads 2025-03-13 11:45:39 +08:00
9 changed files with 158 additions and 15 deletions

View File

@ -6,6 +6,8 @@ type Ads struct {
ID string `gorm:"primaryKey;not null" json:"id"` ID string `gorm:"primaryKey;not null" json:"id"`
ImageUrl string `gorm:"not null" json:"image_url"` ImageUrl string `gorm:"not null" json:"image_url"`
Url string `gorm:"not null" json:"url"` Url string `gorm:"not null" json:"url"`
StartDate *time.Time `gorm:"default:null" json:"start_date"`
EndDate *time.Time `gorm:"default:null" json:"end_date"`
CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"`
UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"`
} }

View File

@ -12,6 +12,7 @@ type accessor struct {
type Ads interface { type Ads interface {
Create(adsdomain.Ads) error Create(adsdomain.Ads) error
GetAll() ([]adsdomain.Ads, error) GetAll() ([]adsdomain.Ads, error)
Update(adsdomain.Ads) error
Delete(string) error Delete(string) error
} }

View File

@ -0,0 +1,31 @@
package adsrepository
import (
"fmt"
adsdomain "legalgo-BE-go/internal/domain/ads"
"gorm.io/gorm/clause"
)
func (a *accessor) Update(spec adsdomain.Ads) error {
if err := a.db.Clauses(clause.OnConflict{
Columns: []clause.Column{{Name: "id"}},
DoUpdates: clause.AssignmentColumns([]string{
"image_url",
"url",
"updated_at",
"start_date",
"end_date",
}),
}).Select(
"image_url",
"url",
"updated_at",
"start_date",
"end_date",
).Save(&spec).Error; err != nil {
return fmt.Errorf("failed to update tag: %v", err)
}
return nil
}

View File

@ -5,5 +5,6 @@ import "go.uber.org/fx"
var Module = fx.Module("ads-http", fx.Invoke( var Module = fx.Module("ads-http", fx.Invoke(
Create, Create,
GetAll, GetAll,
Update,
Delete, Delete,
)) ))

View File

@ -0,0 +1,82 @@
package adshttp
import (
"fmt"
authmiddleware "legalgo-BE-go/internal/api/http/middleware/auth"
adsdomain "legalgo-BE-go/internal/domain/ads"
adssvc "legalgo-BE-go/internal/services/ads"
"legalgo-BE-go/internal/utilities/response"
"legalgo-BE-go/internal/utilities/utils"
"net/http"
"github.com/go-chi/chi/v5"
"github.com/go-playground/validator/v10"
)
func Update(
router chi.Router,
validate *validator.Validate,
adsSvc adssvc.Ads,
) {
router.
With(authmiddleware.Authorize()).
Put("/ads/{ads_id}/update", func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
adsID := chi.URLParam(r, "ads_id")
if adsID == "" {
response.RespondJsonErrorWithCode(
ctx,
w,
fmt.Errorf("ads id is not provided"),
response.ErrBadRequest.Code,
response.ErrBadRequest.HttpCode,
"ads id is not provided",
)
return
}
var spec adsdomain.AdsReq
if err := utils.UnmarshalBody(r, &spec); err != nil {
response.RespondJsonErrorWithCode(
ctx,
w,
err,
response.ErrBadRequest.Code,
response.ErrBadRequest.HttpCode,
"failed to unmarshal body",
)
return
}
if err := validate.Struct(spec); err != nil {
response.RespondJsonErrorWithCode(
ctx,
w,
err,
response.ErrBadRequest.Code,
response.ErrBadRequest.HttpCode,
err.(validator.ValidationErrors).Error(),
)
return
}
if err := adsSvc.Update(adsID, spec); err != nil {
response.RespondJsonErrorWithCode(
ctx,
w,
err,
response.ErrBadRequest.Code,
response.ErrBadRequest.HttpCode,
err.Error(),
)
return
}
response.RespondJsonSuccess(ctx, w, struct {
Message string
}{
Message: "update ads success",
})
})
}

View File

@ -5,14 +5,18 @@ import (
) )
type Ads struct { type Ads struct {
ID string `gorm:"primaryKey;not null" json:"id"` ID string `json:"id"`
ImageUrl string `gorm:"not null" json:"image_url"` ImageUrl string `json:"image_url"`
Url string `gorm:"not null" json:"url"` Url string `json:"url"`
CreatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"created_at"` StartDate *time.Time `json:"start_date"`
UpdatedAt time.Time `gorm:"default:CURRENT_TIMESTAMP" json:"updated_at"` EndDate *time.Time `json:"end_date"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
} }
type AdsReq struct { type AdsReq struct {
Image string `json:"image" validate:"required"` Image string `json:"image" validate:"required"`
URL string `json:"url" validate:"required"` URL string `json:"url" validate:"required"`
StartDate *time.Time `json:"start_date" validate:"required"`
EndDate *time.Time `json:"end_date" validate:"required"`
} }

View File

@ -21,6 +21,8 @@ func (i *impl) Create(spec adsdomain.AdsReq) error {
ID: uuid.NewString(), ID: uuid.NewString(),
ImageUrl: spec.Image, ImageUrl: spec.Image,
Url: spec.URL, Url: spec.URL,
StartDate: spec.StartDate,
EndDate: spec.EndDate,
} }
return i.adsRepo.Create(newSpec) return i.adsRepo.Create(newSpec)

View File

@ -12,6 +12,7 @@ type impl struct {
type Ads interface { type Ads interface {
Create(adsdomain.AdsReq) error Create(adsdomain.AdsReq) error
GetAll() ([]adsdomain.Ads, error) GetAll() ([]adsdomain.Ads, error)
Update(string, adsdomain.AdsReq) error
Delete(string) error Delete(string) error
} }

View File

@ -0,0 +1,19 @@
package adssvc
import (
adsdomain "legalgo-BE-go/internal/domain/ads"
timeutils "legalgo-BE-go/internal/utilities/time_utils"
)
func (i *impl) Update(adsID string, spec adsdomain.AdsReq) error {
newsSpec := adsdomain.Ads{
ID: adsID,
ImageUrl: spec.Image,
Url: spec.URL,
UpdatedAt: timeutils.Now(),
StartDate: spec.StartDate,
EndDate: spec.EndDate,
}
return i.adsRepo.Update(newsSpec)
}