529 lines
13 KiB
Go
529 lines
13 KiB
Go
package service
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
opencodeCodexHeaderURL = "https://raw.githubusercontent.com/anomalyco/opencode/dev/packages/opencode/src/session/prompt/codex_header.txt"
|
|
codexCacheTTL = 15 * time.Minute
|
|
)
|
|
|
|
var codexModelMap = map[string]string{
|
|
"gpt-5.1-codex": "gpt-5.1-codex",
|
|
"gpt-5.1-codex-low": "gpt-5.1-codex",
|
|
"gpt-5.1-codex-medium": "gpt-5.1-codex",
|
|
"gpt-5.1-codex-high": "gpt-5.1-codex",
|
|
"gpt-5.1-codex-max": "gpt-5.1-codex-max",
|
|
"gpt-5.1-codex-max-low": "gpt-5.1-codex-max",
|
|
"gpt-5.1-codex-max-medium": "gpt-5.1-codex-max",
|
|
"gpt-5.1-codex-max-high": "gpt-5.1-codex-max",
|
|
"gpt-5.1-codex-max-xhigh": "gpt-5.1-codex-max",
|
|
"gpt-5.2": "gpt-5.2",
|
|
"gpt-5.2-none": "gpt-5.2",
|
|
"gpt-5.2-low": "gpt-5.2",
|
|
"gpt-5.2-medium": "gpt-5.2",
|
|
"gpt-5.2-high": "gpt-5.2",
|
|
"gpt-5.2-xhigh": "gpt-5.2",
|
|
"gpt-5.2-codex": "gpt-5.2-codex",
|
|
"gpt-5.2-codex-low": "gpt-5.2-codex",
|
|
"gpt-5.2-codex-medium": "gpt-5.2-codex",
|
|
"gpt-5.2-codex-high": "gpt-5.2-codex",
|
|
"gpt-5.2-codex-xhigh": "gpt-5.2-codex",
|
|
"gpt-5.1-codex-mini": "gpt-5.1-codex-mini",
|
|
"gpt-5.1-codex-mini-medium": "gpt-5.1-codex-mini",
|
|
"gpt-5.1-codex-mini-high": "gpt-5.1-codex-mini",
|
|
"gpt-5.1": "gpt-5.1",
|
|
"gpt-5.1-none": "gpt-5.1",
|
|
"gpt-5.1-low": "gpt-5.1",
|
|
"gpt-5.1-medium": "gpt-5.1",
|
|
"gpt-5.1-high": "gpt-5.1",
|
|
"gpt-5.1-chat-latest": "gpt-5.1",
|
|
"gpt-5-codex": "gpt-5.1-codex",
|
|
"codex-mini-latest": "gpt-5.1-codex-mini",
|
|
"gpt-5-codex-mini": "gpt-5.1-codex-mini",
|
|
"gpt-5-codex-mini-medium": "gpt-5.1-codex-mini",
|
|
"gpt-5-codex-mini-high": "gpt-5.1-codex-mini",
|
|
"gpt-5": "gpt-5.1",
|
|
"gpt-5-mini": "gpt-5.1",
|
|
"gpt-5-nano": "gpt-5.1",
|
|
}
|
|
|
|
type codexTransformResult struct {
|
|
Modified bool
|
|
NormalizedModel string
|
|
PromptCacheKey string
|
|
}
|
|
|
|
type opencodeCacheMetadata struct {
|
|
ETag string `json:"etag"`
|
|
LastFetch string `json:"lastFetch,omitempty"`
|
|
LastChecked int64 `json:"lastChecked"`
|
|
}
|
|
|
|
func applyCodexOAuthTransform(reqBody map[string]any) codexTransformResult {
|
|
result := codexTransformResult{}
|
|
|
|
model := ""
|
|
if v, ok := reqBody["model"].(string); ok {
|
|
model = v
|
|
}
|
|
normalizedModel := normalizeCodexModel(model)
|
|
if normalizedModel != "" {
|
|
if model != normalizedModel {
|
|
reqBody["model"] = normalizedModel
|
|
result.Modified = true
|
|
}
|
|
result.NormalizedModel = normalizedModel
|
|
}
|
|
|
|
if v, ok := reqBody["store"].(bool); !ok || v {
|
|
reqBody["store"] = false
|
|
result.Modified = true
|
|
}
|
|
if v, ok := reqBody["stream"].(bool); !ok || !v {
|
|
reqBody["stream"] = true
|
|
result.Modified = true
|
|
}
|
|
|
|
if _, ok := reqBody["max_output_tokens"]; ok {
|
|
delete(reqBody, "max_output_tokens")
|
|
result.Modified = true
|
|
}
|
|
if _, ok := reqBody["max_completion_tokens"]; ok {
|
|
delete(reqBody, "max_completion_tokens")
|
|
result.Modified = true
|
|
}
|
|
|
|
if normalizeCodexTools(reqBody) {
|
|
result.Modified = true
|
|
}
|
|
|
|
if v, ok := reqBody["prompt_cache_key"].(string); ok {
|
|
result.PromptCacheKey = strings.TrimSpace(v)
|
|
}
|
|
|
|
instructions := strings.TrimSpace(getOpenCodeCodexHeader())
|
|
existingInstructions, _ := reqBody["instructions"].(string)
|
|
existingInstructions = strings.TrimSpace(existingInstructions)
|
|
|
|
if instructions != "" {
|
|
if existingInstructions != "" && existingInstructions != instructions {
|
|
if input, ok := reqBody["input"].([]any); ok {
|
|
reqBody["input"] = prependSystemInstruction(input, existingInstructions)
|
|
result.Modified = true
|
|
}
|
|
}
|
|
if existingInstructions != instructions {
|
|
reqBody["instructions"] = instructions
|
|
result.Modified = true
|
|
}
|
|
}
|
|
|
|
if input, ok := reqBody["input"].([]any); ok {
|
|
input = filterCodexInput(input)
|
|
input = normalizeOrphanedToolOutputs(input)
|
|
reqBody["input"] = input
|
|
result.Modified = true
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func normalizeCodexModel(model string) string {
|
|
if model == "" {
|
|
return "gpt-5.1"
|
|
}
|
|
|
|
modelID := model
|
|
if strings.Contains(modelID, "/") {
|
|
parts := strings.Split(modelID, "/")
|
|
modelID = parts[len(parts)-1]
|
|
}
|
|
|
|
if mapped := getNormalizedCodexModel(modelID); mapped != "" {
|
|
return mapped
|
|
}
|
|
|
|
normalized := strings.ToLower(modelID)
|
|
|
|
if strings.Contains(normalized, "gpt-5.2-codex") || strings.Contains(normalized, "gpt 5.2 codex") {
|
|
return "gpt-5.2-codex"
|
|
}
|
|
if strings.Contains(normalized, "gpt-5.2") || strings.Contains(normalized, "gpt 5.2") {
|
|
return "gpt-5.2"
|
|
}
|
|
if strings.Contains(normalized, "gpt-5.1-codex-max") || strings.Contains(normalized, "gpt 5.1 codex max") {
|
|
return "gpt-5.1-codex-max"
|
|
}
|
|
if strings.Contains(normalized, "gpt-5.1-codex-mini") || strings.Contains(normalized, "gpt 5.1 codex mini") {
|
|
return "gpt-5.1-codex-mini"
|
|
}
|
|
if strings.Contains(normalized, "codex-mini-latest") ||
|
|
strings.Contains(normalized, "gpt-5-codex-mini") ||
|
|
strings.Contains(normalized, "gpt 5 codex mini") {
|
|
return "codex-mini-latest"
|
|
}
|
|
if strings.Contains(normalized, "gpt-5.1-codex") || strings.Contains(normalized, "gpt 5.1 codex") {
|
|
return "gpt-5.1-codex"
|
|
}
|
|
if strings.Contains(normalized, "gpt-5.1") || strings.Contains(normalized, "gpt 5.1") {
|
|
return "gpt-5.1"
|
|
}
|
|
if strings.Contains(normalized, "codex") {
|
|
return "gpt-5.1-codex"
|
|
}
|
|
if strings.Contains(normalized, "gpt-5") || strings.Contains(normalized, "gpt 5") {
|
|
return "gpt-5.1"
|
|
}
|
|
|
|
return "gpt-5.1"
|
|
}
|
|
|
|
func getNormalizedCodexModel(modelID string) string {
|
|
if modelID == "" {
|
|
return ""
|
|
}
|
|
if mapped, ok := codexModelMap[modelID]; ok {
|
|
return mapped
|
|
}
|
|
lower := strings.ToLower(modelID)
|
|
for key, value := range codexModelMap {
|
|
if strings.ToLower(key) == lower {
|
|
return value
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func getOpenCodeCachedPrompt(url, cacheFileName, metaFileName string) string {
|
|
cacheDir := codexCachePath("")
|
|
if cacheDir == "" {
|
|
return ""
|
|
}
|
|
cacheFile := filepath.Join(cacheDir, cacheFileName)
|
|
metaFile := filepath.Join(cacheDir, metaFileName)
|
|
|
|
var cachedContent string
|
|
if content, ok := readFile(cacheFile); ok {
|
|
cachedContent = content
|
|
}
|
|
|
|
var meta opencodeCacheMetadata
|
|
if loadJSON(metaFile, &meta) && meta.LastChecked > 0 && cachedContent != "" {
|
|
if time.Since(time.UnixMilli(meta.LastChecked)) < codexCacheTTL {
|
|
return cachedContent
|
|
}
|
|
}
|
|
|
|
content, etag, status, err := fetchWithETag(url, meta.ETag)
|
|
if err == nil && status == http.StatusNotModified && cachedContent != "" {
|
|
return cachedContent
|
|
}
|
|
if err == nil && status >= 200 && status < 300 && content != "" {
|
|
_ = writeFile(cacheFile, content)
|
|
meta = opencodeCacheMetadata{
|
|
ETag: etag,
|
|
LastFetch: time.Now().UTC().Format(time.RFC3339),
|
|
LastChecked: time.Now().UnixMilli(),
|
|
}
|
|
_ = writeJSON(metaFile, meta)
|
|
return content
|
|
}
|
|
|
|
return cachedContent
|
|
}
|
|
|
|
func getOpenCodeCodexHeader() string {
|
|
return getOpenCodeCachedPrompt(opencodeCodexHeaderURL, "opencode-codex-header.txt", "opencode-codex-header-meta.json")
|
|
}
|
|
|
|
func GetOpenCodeInstructions() string {
|
|
return getOpenCodeCodexHeader()
|
|
}
|
|
|
|
func filterCodexInput(input []any) []any {
|
|
filtered := make([]any, 0, len(input))
|
|
for _, item := range input {
|
|
m, ok := item.(map[string]any)
|
|
if !ok {
|
|
filtered = append(filtered, item)
|
|
continue
|
|
}
|
|
if typ, ok := m["type"].(string); ok && typ == "item_reference" {
|
|
continue
|
|
}
|
|
delete(m, "id")
|
|
filtered = append(filtered, m)
|
|
}
|
|
return filtered
|
|
}
|
|
|
|
func prependSystemInstruction(input []any, instructions string) []any {
|
|
message := map[string]any{
|
|
"role": "system",
|
|
"content": []any{
|
|
map[string]any{
|
|
"type": "input_text",
|
|
"text": instructions,
|
|
},
|
|
},
|
|
}
|
|
return append([]any{message}, input...)
|
|
}
|
|
|
|
func normalizeCodexTools(reqBody map[string]any) bool {
|
|
rawTools, ok := reqBody["tools"]
|
|
if !ok || rawTools == nil {
|
|
return false
|
|
}
|
|
tools, ok := rawTools.([]any)
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
modified := false
|
|
for idx, tool := range tools {
|
|
toolMap, ok := tool.(map[string]any)
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
toolType, _ := toolMap["type"].(string)
|
|
if strings.TrimSpace(toolType) != "function" {
|
|
continue
|
|
}
|
|
|
|
function, ok := toolMap["function"].(map[string]any)
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
if _, ok := toolMap["name"]; !ok {
|
|
if name, ok := function["name"].(string); ok && strings.TrimSpace(name) != "" {
|
|
toolMap["name"] = name
|
|
modified = true
|
|
}
|
|
}
|
|
if _, ok := toolMap["description"]; !ok {
|
|
if desc, ok := function["description"].(string); ok && strings.TrimSpace(desc) != "" {
|
|
toolMap["description"] = desc
|
|
modified = true
|
|
}
|
|
}
|
|
if _, ok := toolMap["parameters"]; !ok {
|
|
if params, ok := function["parameters"]; ok {
|
|
toolMap["parameters"] = params
|
|
modified = true
|
|
}
|
|
}
|
|
if _, ok := toolMap["strict"]; !ok {
|
|
if strict, ok := function["strict"]; ok {
|
|
toolMap["strict"] = strict
|
|
modified = true
|
|
}
|
|
}
|
|
|
|
tools[idx] = toolMap
|
|
}
|
|
|
|
if modified {
|
|
reqBody["tools"] = tools
|
|
}
|
|
|
|
return modified
|
|
}
|
|
|
|
func normalizeOrphanedToolOutputs(input []any) []any {
|
|
functionCallIDs := map[string]bool{}
|
|
localShellCallIDs := map[string]bool{}
|
|
customToolCallIDs := map[string]bool{}
|
|
|
|
for _, item := range input {
|
|
m, ok := item.(map[string]any)
|
|
if !ok {
|
|
continue
|
|
}
|
|
callID := getCallID(m)
|
|
if callID == "" {
|
|
continue
|
|
}
|
|
switch m["type"] {
|
|
case "function_call":
|
|
functionCallIDs[callID] = true
|
|
case "local_shell_call":
|
|
localShellCallIDs[callID] = true
|
|
case "custom_tool_call":
|
|
customToolCallIDs[callID] = true
|
|
}
|
|
}
|
|
|
|
output := make([]any, 0, len(input))
|
|
for _, item := range input {
|
|
m, ok := item.(map[string]any)
|
|
if !ok {
|
|
output = append(output, item)
|
|
continue
|
|
}
|
|
switch m["type"] {
|
|
case "function_call_output":
|
|
callID := getCallID(m)
|
|
if callID == "" || (!functionCallIDs[callID] && !localShellCallIDs[callID]) {
|
|
output = append(output, convertOrphanedOutputToMessage(m, callID))
|
|
continue
|
|
}
|
|
case "custom_tool_call_output":
|
|
callID := getCallID(m)
|
|
if callID == "" || !customToolCallIDs[callID] {
|
|
output = append(output, convertOrphanedOutputToMessage(m, callID))
|
|
continue
|
|
}
|
|
case "local_shell_call_output":
|
|
callID := getCallID(m)
|
|
if callID == "" || !localShellCallIDs[callID] {
|
|
output = append(output, convertOrphanedOutputToMessage(m, callID))
|
|
continue
|
|
}
|
|
}
|
|
output = append(output, m)
|
|
}
|
|
return output
|
|
}
|
|
|
|
func getCallID(item map[string]any) string {
|
|
raw, ok := item["call_id"]
|
|
if !ok {
|
|
return ""
|
|
}
|
|
callID, ok := raw.(string)
|
|
if !ok {
|
|
return ""
|
|
}
|
|
callID = strings.TrimSpace(callID)
|
|
if callID == "" {
|
|
return ""
|
|
}
|
|
return callID
|
|
}
|
|
|
|
func convertOrphanedOutputToMessage(item map[string]any, callID string) map[string]any {
|
|
toolName := "tool"
|
|
if name, ok := item["name"].(string); ok && name != "" {
|
|
toolName = name
|
|
}
|
|
labelID := callID
|
|
if labelID == "" {
|
|
labelID = "unknown"
|
|
}
|
|
text := stringifyOutput(item["output"])
|
|
if len(text) > 16000 {
|
|
text = text[:16000] + "\n...[truncated]"
|
|
}
|
|
return map[string]any{
|
|
"type": "message",
|
|
"role": "assistant",
|
|
"content": fmt.Sprintf("[Previous %s result; call_id=%s]: %s", toolName, labelID, text),
|
|
}
|
|
}
|
|
|
|
func stringifyOutput(output any) string {
|
|
switch v := output.(type) {
|
|
case string:
|
|
return v
|
|
default:
|
|
if data, err := json.Marshal(v); err == nil {
|
|
return string(data)
|
|
}
|
|
return fmt.Sprintf("%v", v)
|
|
}
|
|
}
|
|
|
|
func codexCachePath(filename string) string {
|
|
home, err := os.UserHomeDir()
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
cacheDir := filepath.Join(home, ".opencode", "cache")
|
|
if filename == "" {
|
|
return cacheDir
|
|
}
|
|
return filepath.Join(cacheDir, filename)
|
|
}
|
|
|
|
func readFile(path string) (string, bool) {
|
|
if path == "" {
|
|
return "", false
|
|
}
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return "", false
|
|
}
|
|
return string(data), true
|
|
}
|
|
|
|
func writeFile(path, content string) error {
|
|
if path == "" {
|
|
return fmt.Errorf("empty cache path")
|
|
}
|
|
if err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {
|
|
return err
|
|
}
|
|
return os.WriteFile(path, []byte(content), 0o644)
|
|
}
|
|
|
|
func loadJSON(path string, target any) bool {
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if err := json.Unmarshal(data, target); err != nil {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func writeJSON(path string, value any) error {
|
|
if path == "" {
|
|
return fmt.Errorf("empty json path")
|
|
}
|
|
if err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {
|
|
return err
|
|
}
|
|
data, err := json.Marshal(value)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return os.WriteFile(path, data, 0o644)
|
|
}
|
|
|
|
func fetchWithETag(url, etag string) (string, string, int, error) {
|
|
req, err := http.NewRequest(http.MethodGet, url, nil)
|
|
if err != nil {
|
|
return "", "", 0, err
|
|
}
|
|
req.Header.Set("User-Agent", "sub2api-codex")
|
|
if etag != "" {
|
|
req.Header.Set("If-None-Match", etag)
|
|
}
|
|
resp, err := http.DefaultClient.Do(req)
|
|
if err != nil {
|
|
return "", "", 0, err
|
|
}
|
|
defer func() {
|
|
_ = resp.Body.Close()
|
|
}()
|
|
|
|
body, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return "", "", resp.StatusCode, err
|
|
}
|
|
return string(body), resp.Header.Get("etag"), resp.StatusCode, nil
|
|
}
|