129 lines
3.4 KiB
Go
129 lines
3.4 KiB
Go
package controller
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/QuantumNous/new-api/middleware"
|
|
"github.com/QuantumNous/new-api/model"
|
|
relaycommon "github.com/QuantumNous/new-api/relay/common"
|
|
relayconstant "github.com/QuantumNous/new-api/relay/constant"
|
|
"github.com/QuantumNous/new-api/types"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func setupPlaygroundTokenContext(c *gin.Context, relayFormat types.RelayFormat) (*types.TokenFactoryError, *relaycommon.RelayInfo) {
|
|
useAccessToken := c.GetBool("use_access_token")
|
|
if useAccessToken {
|
|
return types.NewError(errors.New("暂不支持使用 access token"), types.ErrorCodeAccessDenied, types.ErrOptionWithSkipRetry()), nil
|
|
}
|
|
|
|
relayInfo, err := relaycommon.GenRelayInfo(c, relayFormat, nil, nil)
|
|
if err != nil {
|
|
return types.NewError(err, types.ErrorCodeInvalidRequest, types.ErrOptionWithSkipRetry()), nil
|
|
}
|
|
|
|
userId := c.GetInt("id")
|
|
|
|
// Write user context to ensure acceptUnsetRatio is available
|
|
userCache, err := model.GetUserCache(userId)
|
|
if err != nil {
|
|
return types.NewError(err, types.ErrorCodeQueryDataError, types.ErrOptionWithSkipRetry()), nil
|
|
}
|
|
userCache.WriteContext(c)
|
|
|
|
tempToken := &model.Token{
|
|
UserId: userId,
|
|
Name: fmt.Sprintf("playground-%s", relayInfo.UsingGroup),
|
|
Group: relayInfo.UsingGroup,
|
|
}
|
|
_ = middleware.SetupContextForToken(c, tempToken)
|
|
return nil, relayInfo
|
|
}
|
|
|
|
func Playground(c *gin.Context) {
|
|
var tokenFactoryError *types.TokenFactoryError
|
|
|
|
defer func() {
|
|
if tokenFactoryError != nil {
|
|
c.JSON(tokenFactoryError.StatusCode, gin.H{
|
|
"error": tokenFactoryError.ToOpenAIError(),
|
|
})
|
|
}
|
|
}()
|
|
|
|
tokenFactoryError, _ = setupPlaygroundTokenContext(c, types.RelayFormatOpenAI)
|
|
if tokenFactoryError != nil {
|
|
return
|
|
}
|
|
|
|
Relay(c, types.RelayFormatOpenAI)
|
|
}
|
|
|
|
func PlaygroundImage(c *gin.Context) {
|
|
var tokenFactoryError *types.TokenFactoryError
|
|
defer func() {
|
|
if tokenFactoryError != nil {
|
|
c.JSON(tokenFactoryError.StatusCode, gin.H{
|
|
"error": tokenFactoryError.ToOpenAIError(),
|
|
})
|
|
}
|
|
}()
|
|
tokenFactoryError, _ = setupPlaygroundTokenContext(c, types.RelayFormatOpenAIImage)
|
|
if tokenFactoryError != nil {
|
|
return
|
|
}
|
|
// 兜底:确保图片请求按图片链路处理,避免误走文本链路导致 request type 冲突
|
|
c.Set("relay_mode", relayconstant.RelayModeImagesGenerations)
|
|
Relay(c, types.RelayFormatOpenAIImage)
|
|
}
|
|
|
|
func PlaygroundVideo(c *gin.Context) {
|
|
var tokenFactoryError *types.TokenFactoryError
|
|
defer func() {
|
|
if tokenFactoryError != nil {
|
|
c.JSON(tokenFactoryError.StatusCode, gin.H{
|
|
"error": tokenFactoryError.ToOpenAIError(),
|
|
})
|
|
}
|
|
}()
|
|
tokenFactoryError, _ = setupPlaygroundTokenContext(c, types.RelayFormatTask)
|
|
if tokenFactoryError != nil {
|
|
return
|
|
}
|
|
RelayTask(c)
|
|
}
|
|
|
|
func PlaygroundVideoFetch(c *gin.Context) {
|
|
var tokenFactoryError *types.TokenFactoryError
|
|
defer func() {
|
|
if tokenFactoryError != nil {
|
|
c.JSON(tokenFactoryError.StatusCode, gin.H{
|
|
"error": tokenFactoryError.ToOpenAIError(),
|
|
})
|
|
}
|
|
}()
|
|
tokenFactoryError, _ = setupPlaygroundTokenContext(c, types.RelayFormatTask)
|
|
if tokenFactoryError != nil {
|
|
return
|
|
}
|
|
RelayTaskFetch(c)
|
|
}
|
|
|
|
func PlaygroundImageFetch(c *gin.Context) {
|
|
var tokenFactoryError *types.TokenFactoryError
|
|
defer func() {
|
|
if tokenFactoryError != nil {
|
|
c.JSON(tokenFactoryError.StatusCode, gin.H{
|
|
"error": tokenFactoryError.ToOpenAIError(),
|
|
})
|
|
}
|
|
}()
|
|
tokenFactoryError, _ = setupPlaygroundTokenContext(c, types.RelayFormatTask)
|
|
if tokenFactoryError != nil {
|
|
return
|
|
}
|
|
RelayTaskFetch(c)
|
|
}
|