| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- package kling
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "io"
- "net/http"
- "strings"
- "time"
- "github.com/QuantumNous/new-api/common"
- "github.com/QuantumNous/new-api/model"
- "github.com/samber/lo"
- "github.com/gin-gonic/gin"
- "github.com/golang-jwt/jwt/v5"
- "github.com/pkg/errors"
- "github.com/QuantumNous/new-api/constant"
- "github.com/QuantumNous/new-api/dto"
- "github.com/QuantumNous/new-api/relay/channel"
- relaycommon "github.com/QuantumNous/new-api/relay/common"
- "github.com/QuantumNous/new-api/service"
- )
- // ============================
- // Request / Response structures
- // ============================
- type TrajectoryPoint struct {
- X int `json:"x"`
- Y int `json:"y"`
- }
- type DynamicMask struct {
- Mask string `json:"mask,omitempty"`
- Trajectories []TrajectoryPoint `json:"trajectories,omitempty"`
- }
- type CameraConfig struct {
- Horizontal float64 `json:"horizontal,omitempty"`
- Vertical float64 `json:"vertical,omitempty"`
- Pan float64 `json:"pan,omitempty"`
- Tilt float64 `json:"tilt,omitempty"`
- Roll float64 `json:"roll,omitempty"`
- Zoom float64 `json:"zoom,omitempty"`
- }
- type CameraControl struct {
- Type string `json:"type,omitempty"`
- Config *CameraConfig `json:"config,omitempty"`
- }
- type requestPayload struct {
- Prompt string `json:"prompt,omitempty"`
- Image string `json:"image,omitempty"`
- ImageTail string `json:"image_tail,omitempty"`
- NegativePrompt string `json:"negative_prompt,omitempty"`
- Mode string `json:"mode,omitempty"`
- Duration string `json:"duration,omitempty"`
- AspectRatio string `json:"aspect_ratio,omitempty"`
- ModelName string `json:"model_name,omitempty"`
- Model string `json:"model,omitempty"` // Compatible with upstreams that only recognize "model"
- CfgScale float64 `json:"cfg_scale,omitempty"`
- StaticMask string `json:"static_mask,omitempty"`
- DynamicMasks []DynamicMask `json:"dynamic_masks,omitempty"`
- CameraControl *CameraControl `json:"camera_control,omitempty"`
- CallbackUrl string `json:"callback_url,omitempty"`
- ExternalTaskId string `json:"external_task_id,omitempty"`
- }
- type responsePayload struct {
- Code int `json:"code"`
- Message string `json:"message"`
- TaskId string `json:"task_id"`
- RequestId string `json:"request_id"`
- Data struct {
- TaskId string `json:"task_id"`
- TaskStatus string `json:"task_status"`
- TaskStatusMsg string `json:"task_status_msg"`
- TaskResult struct {
- Videos []struct {
- Id string `json:"id"`
- Url string `json:"url"`
- Duration string `json:"duration"`
- } `json:"videos"`
- } `json:"task_result"`
- CreatedAt int64 `json:"created_at"`
- UpdatedAt int64 `json:"updated_at"`
- } `json:"data"`
- }
- // ============================
- // Adaptor implementation
- // ============================
- type TaskAdaptor struct {
- ChannelType int
- apiKey string
- baseURL string
- }
- func (a *TaskAdaptor) Init(info *relaycommon.RelayInfo) {
- a.ChannelType = info.ChannelType
- a.baseURL = info.ChannelBaseUrl
- a.apiKey = info.ApiKey
- // apiKey format: "access_key|secret_key"
- }
- // ValidateRequestAndSetAction parses body, validates fields and sets default action.
- func (a *TaskAdaptor) ValidateRequestAndSetAction(c *gin.Context, info *relaycommon.RelayInfo) (taskErr *dto.TaskError) {
- // Use the standard validation method for TaskSubmitReq
- return relaycommon.ValidateBasicTaskRequest(c, info, constant.TaskActionGenerate)
- }
- // BuildRequestURL constructs the upstream URL.
- func (a *TaskAdaptor) BuildRequestURL(info *relaycommon.RelayInfo) (string, error) {
- path := lo.Ternary(info.Action == constant.TaskActionGenerate, "/v1/videos/image2video", "/v1/videos/text2video")
- if isNewAPIRelay(info.ApiKey) {
- return fmt.Sprintf("%s/kling%s", a.baseURL, path), nil
- }
- return fmt.Sprintf("%s%s", a.baseURL, path), nil
- }
- // BuildRequestHeader sets required headers.
- func (a *TaskAdaptor) BuildRequestHeader(c *gin.Context, req *http.Request, info *relaycommon.RelayInfo) error {
- token, err := a.createJWTToken()
- if err != nil {
- return fmt.Errorf("failed to create JWT token: %w", err)
- }
- req.Header.Set("Content-Type", "application/json")
- req.Header.Set("Accept", "application/json")
- req.Header.Set("Authorization", "Bearer "+token)
- req.Header.Set("User-Agent", "kling-sdk/1.0")
- return nil
- }
- // BuildRequestBody converts request into Kling specific format.
- func (a *TaskAdaptor) BuildRequestBody(c *gin.Context, info *relaycommon.RelayInfo) (io.Reader, error) {
- v, exists := c.Get("task_request")
- if !exists {
- return nil, fmt.Errorf("request not found in context")
- }
- req := v.(relaycommon.TaskSubmitReq)
- body, err := a.convertToRequestPayload(&req)
- if err != nil {
- return nil, err
- }
- if body.Image == "" && body.ImageTail == "" {
- c.Set("action", constant.TaskActionTextGenerate)
- }
- data, err := json.Marshal(body)
- if err != nil {
- return nil, err
- }
- return bytes.NewReader(data), nil
- }
- // DoRequest delegates to common helper.
- func (a *TaskAdaptor) DoRequest(c *gin.Context, info *relaycommon.RelayInfo, requestBody io.Reader) (*http.Response, error) {
- if action := c.GetString("action"); action != "" {
- info.Action = action
- }
- return channel.DoTaskApiRequest(a, c, info, requestBody)
- }
- // DoResponse handles upstream response, returns taskID etc.
- func (a *TaskAdaptor) DoResponse(c *gin.Context, resp *http.Response, info *relaycommon.RelayInfo) (taskID string, taskData []byte, taskErr *dto.TaskError) {
- responseBody, err := io.ReadAll(resp.Body)
- if err != nil {
- taskErr = service.TaskErrorWrapper(err, "read_response_body_failed", http.StatusInternalServerError)
- return
- }
- var kResp responsePayload
- err = json.Unmarshal(responseBody, &kResp)
- if err != nil {
- taskErr = service.TaskErrorWrapper(err, "unmarshal_response_failed", http.StatusInternalServerError)
- return
- }
- if kResp.Code != 0 {
- taskErr = service.TaskErrorWrapperLocal(fmt.Errorf(kResp.Message), "task_failed", http.StatusBadRequest)
- return
- }
- ov := dto.NewOpenAIVideo()
- ov.ID = kResp.Data.TaskId
- ov.TaskID = kResp.Data.TaskId
- ov.CreatedAt = time.Now().Unix()
- ov.Model = info.OriginModelName
- c.JSON(http.StatusOK, ov)
- return kResp.Data.TaskId, responseBody, nil
- }
- // FetchTask fetch task status
- func (a *TaskAdaptor) FetchTask(baseUrl, key string, body map[string]any) (*http.Response, error) {
- taskID, ok := body["task_id"].(string)
- if !ok {
- return nil, fmt.Errorf("invalid task_id")
- }
- action, ok := body["action"].(string)
- if !ok {
- return nil, fmt.Errorf("invalid action")
- }
- path := lo.Ternary(action == constant.TaskActionGenerate, "/v1/videos/image2video", "/v1/videos/text2video")
- url := fmt.Sprintf("%s%s/%s", baseUrl, path, taskID)
- if isNewAPIRelay(key) {
- url = fmt.Sprintf("%s/kling%s/%s", baseUrl, path, taskID)
- }
- req, err := http.NewRequest(http.MethodGet, url, nil)
- if err != nil {
- return nil, err
- }
- token, err := a.createJWTTokenWithKey(key)
- if err != nil {
- token = key
- }
- req.Header.Set("Accept", "application/json")
- req.Header.Set("Authorization", "Bearer "+token)
- req.Header.Set("User-Agent", "kling-sdk/1.0")
- return service.GetHttpClient().Do(req)
- }
- func (a *TaskAdaptor) GetModelList() []string {
- return []string{"kling-v1", "kling-v1-6", "kling-v2-master"}
- }
- func (a *TaskAdaptor) GetChannelName() string {
- return "kling"
- }
- // ============================
- // helpers
- // ============================
- func (a *TaskAdaptor) convertToRequestPayload(req *relaycommon.TaskSubmitReq) (*requestPayload, error) {
- r := requestPayload{
- Prompt: req.Prompt,
- Image: req.Image,
- Mode: defaultString(req.Mode, "std"),
- Duration: fmt.Sprintf("%d", defaultInt(req.Duration, 5)),
- AspectRatio: a.getAspectRatio(req.Size),
- ModelName: req.Model,
- Model: req.Model, // Keep consistent with model_name, double writing improves compatibility
- CfgScale: 0.5,
- StaticMask: "",
- DynamicMasks: []DynamicMask{},
- CameraControl: nil,
- CallbackUrl: "",
- ExternalTaskId: "",
- }
- if r.ModelName == "" {
- r.ModelName = "kling-v1"
- }
- metadata := req.Metadata
- medaBytes, err := json.Marshal(metadata)
- if err != nil {
- return nil, errors.Wrap(err, "metadata marshal metadata failed")
- }
- err = json.Unmarshal(medaBytes, &r)
- if err != nil {
- return nil, errors.Wrap(err, "unmarshal metadata failed")
- }
- return &r, nil
- }
- func (a *TaskAdaptor) getAspectRatio(size string) string {
- switch size {
- case "1024x1024", "512x512":
- return "1:1"
- case "1280x720", "1920x1080":
- return "16:9"
- case "720x1280", "1080x1920":
- return "9:16"
- default:
- return "1:1"
- }
- }
- func defaultString(s, def string) string {
- if strings.TrimSpace(s) == "" {
- return def
- }
- return s
- }
- func defaultInt(v int, def int) int {
- if v == 0 {
- return def
- }
- return v
- }
- // ============================
- // JWT helpers
- // ============================
- func (a *TaskAdaptor) createJWTToken() (string, error) {
- return a.createJWTTokenWithKey(a.apiKey)
- }
- func (a *TaskAdaptor) createJWTTokenWithKey(apiKey string) (string, error) {
- if isNewAPIRelay(apiKey) {
- return apiKey, nil // new api relay
- }
- keyParts := strings.Split(apiKey, "|")
- if len(keyParts) != 2 {
- return "", errors.New("invalid api_key, required format is accessKey|secretKey")
- }
- accessKey := strings.TrimSpace(keyParts[0])
- if len(keyParts) == 1 {
- return accessKey, nil
- }
- secretKey := strings.TrimSpace(keyParts[1])
- now := time.Now().Unix()
- claims := jwt.MapClaims{
- "iss": accessKey,
- "exp": now + 1800, // 30 minutes
- "nbf": now - 5,
- }
- token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
- token.Header["typ"] = "JWT"
- return token.SignedString([]byte(secretKey))
- }
- func (a *TaskAdaptor) ParseTaskResult(respBody []byte) (*relaycommon.TaskInfo, error) {
- taskInfo := &relaycommon.TaskInfo{}
- resPayload := responsePayload{}
- err := json.Unmarshal(respBody, &resPayload)
- if err != nil {
- return nil, errors.Wrap(err, "failed to unmarshal response body")
- }
- taskInfo.Code = resPayload.Code
- taskInfo.TaskID = resPayload.Data.TaskId
- taskInfo.Reason = resPayload.Message
- //任务状态,枚举值:submitted(已提交)、processing(处理中)、succeed(成功)、failed(失败)
- status := resPayload.Data.TaskStatus
- switch status {
- case "submitted":
- taskInfo.Status = model.TaskStatusSubmitted
- case "processing":
- taskInfo.Status = model.TaskStatusInProgress
- case "succeed":
- taskInfo.Status = model.TaskStatusSuccess
- case "failed":
- taskInfo.Status = model.TaskStatusFailure
- default:
- return nil, fmt.Errorf("unknown task status: %s", status)
- }
- if videos := resPayload.Data.TaskResult.Videos; len(videos) > 0 {
- video := videos[0]
- taskInfo.Url = video.Url
- }
- return taskInfo, nil
- }
- func isNewAPIRelay(apiKey string) bool {
- return strings.HasPrefix(apiKey, "sk-")
- }
- func (a *TaskAdaptor) ConvertToOpenAIVideo(originTask *model.Task) ([]byte, error) {
- var klingResp responsePayload
- if err := json.Unmarshal(originTask.Data, &klingResp); err != nil {
- return nil, errors.Wrap(err, "unmarshal kling task data failed")
- }
- openAIVideo := dto.NewOpenAIVideo()
- openAIVideo.ID = originTask.TaskID
- openAIVideo.Status = originTask.Status.ToVideoStatus()
- openAIVideo.SetProgressStr(originTask.Progress)
- openAIVideo.CreatedAt = klingResp.Data.CreatedAt
- openAIVideo.CompletedAt = klingResp.Data.UpdatedAt
- if len(klingResp.Data.TaskResult.Videos) > 0 {
- video := klingResp.Data.TaskResult.Videos[0]
- if video.Url != "" {
- openAIVideo.SetMetadata("url", video.Url)
- }
- if video.Duration != "" {
- openAIVideo.Seconds = video.Duration
- }
- }
- if klingResp.Code != 0 && klingResp.Message != "" {
- openAIVideo.Error = &dto.OpenAIVideoError{
- Message: klingResp.Message,
- Code: fmt.Sprintf("%d", klingResp.Code),
- }
- }
- jsonData, _ := common.Marshal(openAIVideo)
- return jsonData, nil
- }
|