mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-04 10:13:53 +08:00
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
package publish
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
|
|
"github.com/APIParkLab/APIPark/gateway"
|
|
|
|
"github.com/APIParkLab/APIPark/module/publish/dto"
|
|
"github.com/eolinker/go-common/autowire"
|
|
)
|
|
|
|
type IPublishModule interface {
|
|
CheckPublish(ctx context.Context, serviceId string, releaseId string) (*dto.DiffOut, error)
|
|
|
|
Apply(ctx context.Context, serviceId string, input *dto.ApplyInput) (*dto.Publish, error)
|
|
Stop(ctx context.Context, serviceId string, id string) error
|
|
Refuse(ctx context.Context, serviceId string, id string, commits string) error
|
|
Accept(ctx context.Context, serviceId string, id string, commits string) error
|
|
Publish(ctx context.Context, serviceId string, id string) error
|
|
List(ctx context.Context, serviceId string, page, pageSize int) ([]*dto.Publish, int64, error)
|
|
Detail(ctx context.Context, serviceId string, id string) (*dto.PublishDetail, error)
|
|
PublishStatuses(ctx context.Context, serviceId string, id string) ([]*dto.PublishStatus, error)
|
|
}
|
|
|
|
func init() {
|
|
autowire.Auto[IPublishModule](func() reflect.Value {
|
|
m := new(imlPublishModule)
|
|
gateway.RegisterInitHandleFunc(m.initGateway)
|
|
return reflect.ValueOf(m)
|
|
})
|
|
}
|