Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit d8f15c6

Browse files
authored
Move cody packages only used by frontend into cmd/frontend (#62311)
The httpapi package for completions APIs and the internal/cody package are only used in frontend, so moving them there. This cleans up the massive /internal package a bit, and is part of a larger effort to make less calls to conf.Get() inside /internal, because those are hard to trace down and can potentially brick services like cody-gateway when they are ever in any call paths. Test plan: Just moved code around, and the go compiler doesn't complain.
1 parent 4548618 commit d8f15c6

40 files changed

+69
-65
lines changed

cmd/frontend/graphqlbackend/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,11 @@ go_library(
238238
"//cmd/frontend/hubspot",
239239
"//cmd/frontend/hubspot/hubspotutil",
240240
"//cmd/frontend/internal/cloneurls",
241+
"//cmd/frontend/internal/cody",
241242
"//cmd/frontend/internal/inventory",
242243
"//cmd/frontend/internal/processrestart",
243244
"//cmd/frontend/internal/search/logs",
245+
"//cmd/frontend/internal/ssc",
244246
"//internal/actor",
245247
"//internal/adminanalytics",
246248
"//internal/api",
@@ -254,7 +256,6 @@ go_library(
254256
"//internal/codeintel/dependencies",
255257
"//internal/codeintel/dependencies/shared",
256258
"//internal/codeintel/resolvers",
257-
"//internal/cody",
258259
"//internal/codygateway",
259260
"//internal/conf",
260261
"//internal/conf/conftypes",
@@ -323,7 +324,6 @@ go_library(
323324
"//internal/siteid",
324325
"//internal/sourcegraphoperator",
325326
"//internal/src-prometheus",
326-
"//internal/ssc",
327327
"//internal/suspiciousnames",
328328
"//internal/symbols",
329329
"//internal/temporarysettings",

cmd/frontend/graphqlbackend/external_account.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ import (
77
"github.com/graph-gophers/graphql-go"
88
"github.com/graph-gophers/graphql-go/relay"
99

10+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
11+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/ssc"
1012
"github.com/sourcegraph/sourcegraph/internal/actor"
1113
"github.com/sourcegraph/sourcegraph/internal/auth"
12-
"github.com/sourcegraph/sourcegraph/internal/cody"
1314
"github.com/sourcegraph/sourcegraph/internal/database"
1415
"github.com/sourcegraph/sourcegraph/internal/dotcom"
1516
"github.com/sourcegraph/sourcegraph/internal/extsvc"
1617
"github.com/sourcegraph/sourcegraph/internal/gqlutil"
17-
"github.com/sourcegraph/sourcegraph/internal/ssc"
1818
"github.com/sourcegraph/sourcegraph/lib/errors"
1919
)
2020

cmd/frontend/graphqlbackend/site.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,24 @@ package graphqlbackend
33
import (
44
"bytes"
55
"context"
6-
"github.com/sourcegraph/sourcegraph/schema"
76
"os"
87
"strconv"
98
"strings"
109
"sync"
1110

11+
"github.com/sourcegraph/sourcegraph/schema"
12+
1213
"github.com/google/go-cmp/cmp"
1314
"github.com/graph-gophers/graphql-go"
1415
"github.com/graph-gophers/graphql-go/relay"
1516
"github.com/sourcegraph/log"
1617

1718
"github.com/sourcegraph/sourcegraph/cmd/frontend/graphqlbackend/graphqlutil"
19+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
1820
"github.com/sourcegraph/sourcegraph/internal/actor"
1921
"github.com/sourcegraph/sourcegraph/internal/api"
2022
"github.com/sourcegraph/sourcegraph/internal/auth"
2123
"github.com/sourcegraph/sourcegraph/internal/cloud"
22-
"github.com/sourcegraph/sourcegraph/internal/cody"
2324
"github.com/sourcegraph/sourcegraph/internal/conf"
2425
"github.com/sourcegraph/sourcegraph/internal/conf/conftypes"
2526
"github.com/sourcegraph/sourcegraph/internal/database"

cmd/frontend/graphqlbackend/user.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"github.com/graph-gophers/graphql-go"
99
"github.com/graph-gophers/graphql-go/relay"
1010

11-
"github.com/sourcegraph/sourcegraph/internal/cody"
11+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
12+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/ssc"
1213
"github.com/sourcegraph/sourcegraph/internal/dotcom"
13-
"github.com/sourcegraph/sourcegraph/internal/ssc"
1414

1515
"github.com/keegancsmith/sqlf"
1616
"github.com/sourcegraph/log"

cmd/frontend/internal/app/jscontext/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ go_library(
1313
"//cmd/frontend/graphqlbackend",
1414
"//cmd/frontend/internal/app/assetsutil",
1515
"//cmd/frontend/internal/app/ui/sveltekit",
16+
"//cmd/frontend/internal/cody",
1617
"//cmd/frontend/webhooks",
1718
"//internal/actor",
1819
"//internal/auth/providers",
1920
"//internal/auth/userpasswd",
20-
"//internal/cody",
2121
"//internal/conf",
2222
"//internal/conf/deploy",
2323
"//internal/database",

cmd/frontend/internal/app/jscontext/jscontext.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ import (
1717
"github.com/sourcegraph/sourcegraph/cmd/frontend/graphqlbackend"
1818
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/app/assetsutil"
1919
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/app/ui/sveltekit"
20+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
2021
"github.com/sourcegraph/sourcegraph/cmd/frontend/webhooks"
2122
sgactor "github.com/sourcegraph/sourcegraph/internal/actor"
2223
"github.com/sourcegraph/sourcegraph/internal/auth/providers"
2324
"github.com/sourcegraph/sourcegraph/internal/auth/userpasswd"
24-
"github.com/sourcegraph/sourcegraph/internal/cody"
2525
"github.com/sourcegraph/sourcegraph/internal/conf"
2626
"github.com/sourcegraph/sourcegraph/internal/conf/deploy"
2727
"github.com/sourcegraph/sourcegraph/internal/database"

internal/cody/BUILD.bazel renamed to cmd/frontend/internal/cody/BUILD.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
load("//dev:go_defs.bzl", "go_test")
21
load("@io_bazel_rules_go//go:def.bzl", "go_library")
2+
load("//dev:go_defs.bzl", "go_test")
33

44
go_library(
55
name = "cody",
@@ -9,10 +9,11 @@ go_library(
99
"subscription.go",
1010
"utils.go",
1111
],
12-
importpath = "github.com/sourcegraph/sourcegraph/internal/cody",
13-
visibility = ["//:__subpackages__"],
12+
importpath = "github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody",
13+
visibility = ["//cmd/frontend:__subpackages__"],
1414
deps = [
1515
"//cmd/frontend/backend",
16+
"//cmd/frontend/internal/ssc",
1617
"//internal/accesstoken",
1718
"//internal/actor",
1819
"//internal/auth",
@@ -26,7 +27,6 @@ go_library(
2627
"//internal/httpcli",
2728
"//internal/licensing",
2829
"//internal/rbac",
29-
"//internal/ssc",
3030
"//internal/types",
3131
"//lib/errors",
3232
"@com_github_sourcegraph_log//:log",
@@ -42,6 +42,7 @@ go_test(
4242
],
4343
embed = [":cody"],
4444
deps = [
45+
"//cmd/frontend/internal/ssc",
4546
"//internal/actor",
4647
"//internal/conf",
4748
"//internal/database",
@@ -51,7 +52,6 @@ go_test(
5152
"//internal/featureflag",
5253
"//internal/licensing",
5354
"//internal/rbac/types",
54-
"//internal/ssc",
5555
"//internal/types",
5656
"//schema",
5757
"@com_github_stretchr_testify//assert",

internal/cody/subscription.go renamed to cmd/frontend/internal/cody/subscription.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"sync"
77
"time"
88

9+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/ssc"
910
"github.com/sourcegraph/sourcegraph/internal/database"
10-
"github.com/sourcegraph/sourcegraph/internal/ssc"
1111
"github.com/sourcegraph/sourcegraph/internal/types"
1212
"github.com/sourcegraph/sourcegraph/lib/errors"
1313
)

internal/cody/subscription_test.go renamed to cmd/frontend/internal/cody/subscription_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88

99
"github.com/stretchr/testify/assert"
1010

11+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/ssc"
1112
"github.com/sourcegraph/sourcegraph/internal/actor"
1213
"github.com/sourcegraph/sourcegraph/internal/database"
1314
"github.com/sourcegraph/sourcegraph/internal/database/dbmocks"
1415
"github.com/sourcegraph/sourcegraph/internal/extsvc"
15-
"github.com/sourcegraph/sourcegraph/internal/ssc"
1616
"github.com/sourcegraph/sourcegraph/internal/types"
1717
)
1818

internal/cody/utils.go renamed to cmd/frontend/internal/cody/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"time"
66

7-
"github.com/sourcegraph/sourcegraph/internal/ssc"
7+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/ssc"
88
"github.com/sourcegraph/sourcegraph/internal/types"
99
)
1010

cmd/frontend/internal/codycontext/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ go_library(
1414
visibility = ["//cmd/frontend:__subpackages__"],
1515
deps = [
1616
"//cmd/frontend/enterprise",
17+
"//cmd/frontend/internal/cody",
1718
"//internal/api",
1819
"//internal/codeintel",
19-
"//internal/cody",
2020
"//internal/conf",
2121
"//internal/conf/conftypes",
2222
"//internal/database",

cmd/frontend/internal/codycontext/context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"github.com/sourcegraph/log"
1212
"go.opentelemetry.io/otel/attribute"
1313

14+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
1415
"github.com/sourcegraph/sourcegraph/internal/api"
15-
"github.com/sourcegraph/sourcegraph/internal/cody"
1616
"github.com/sourcegraph/sourcegraph/internal/conf"
1717
"github.com/sourcegraph/sourcegraph/internal/database"
1818
"github.com/sourcegraph/sourcegraph/internal/embeddings"

cmd/frontend/internal/completions/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ go_library(
77
visibility = ["//cmd/frontend:__subpackages__"],
88
deps = [
99
"//cmd/frontend/enterprise",
10+
"//cmd/frontend/internal/cody",
1011
"//cmd/frontend/internal/completions/resolvers",
1112
"//cmd/frontend/internal/guardrails",
13+
"//cmd/frontend/internal/httpapi/completions",
1214
"//internal/codeintel",
13-
"//internal/cody",
14-
"//internal/completions/httpapi",
1515
"//internal/conf/conftypes",
1616
"//internal/database",
1717
"//internal/observation",

cmd/frontend/internal/completions/init.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"github.com/sourcegraph/log"
88

99
"github.com/sourcegraph/sourcegraph/cmd/frontend/enterprise"
10+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
1011
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/completions/resolvers"
1112
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/guardrails"
13+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/httpapi/completions"
1214
"github.com/sourcegraph/sourcegraph/internal/codeintel"
13-
"github.com/sourcegraph/sourcegraph/internal/cody"
14-
"github.com/sourcegraph/sourcegraph/internal/completions/httpapi"
1515
"github.com/sourcegraph/sourcegraph/internal/conf/conftypes"
1616
"github.com/sourcegraph/sourcegraph/internal/database"
1717
"github.com/sourcegraph/sourcegraph/internal/observation"
@@ -28,11 +28,11 @@ func Init(
2828
logger := log.Scoped("completions")
2929

3030
enterpriseServices.NewChatCompletionsStreamHandler = func() http.Handler {
31-
completionsHandler := httpapi.NewChatCompletionsStreamHandler(logger, db)
31+
completionsHandler := completions.NewChatCompletionsStreamHandler(logger, db)
3232
return requireVerifiedEmailMiddleware(db, observationCtx.Logger, completionsHandler)
3333
}
3434
enterpriseServices.NewCodeCompletionsHandler = func() http.Handler {
35-
codeCompletionsHandler := httpapi.NewCodeCompletionsHandler(logger, db, guardrails.NewAttributionTest(observationCtx, conf))
35+
codeCompletionsHandler := completions.NewCodeCompletionsHandler(logger, db, guardrails.NewAttributionTest(observationCtx, conf))
3636
return requireVerifiedEmailMiddleware(db, observationCtx.Logger, codeCompletionsHandler)
3737
}
3838
enterpriseServices.CompletionsResolver = resolvers.NewCompletionsResolver(db, observationCtx.Logger)

cmd/frontend/internal/completions/resolvers/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ go_library(
77
visibility = ["//cmd/frontend:__subpackages__"],
88
deps = [
99
"//cmd/frontend/graphqlbackend",
10-
"//internal/cody",
10+
"//cmd/frontend/internal/cody",
11+
"//cmd/frontend/internal/httpapi/completions",
1112
"//internal/completions/client",
12-
"//internal/completions/httpapi",
1313
"//internal/completions/types",
1414
"//internal/conf",
1515
"//internal/database",

cmd/frontend/internal/completions/resolvers/resolver.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"github.com/sourcegraph/log"
88

99
"github.com/sourcegraph/sourcegraph/cmd/frontend/graphqlbackend"
10-
"github.com/sourcegraph/sourcegraph/internal/cody"
10+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
11+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/httpapi/completions"
1112
"github.com/sourcegraph/sourcegraph/internal/completions/client"
12-
"github.com/sourcegraph/sourcegraph/internal/completions/httpapi"
1313
"github.com/sourcegraph/sourcegraph/internal/completions/types"
1414
"github.com/sourcegraph/sourcegraph/internal/conf"
1515
"github.com/sourcegraph/sourcegraph/internal/database"
@@ -22,13 +22,13 @@ var _ graphqlbackend.CompletionsResolver = &completionsResolver{}
2222

2323
// completionsResolver provides chat completions
2424
type completionsResolver struct {
25-
rl httpapi.RateLimiter
25+
rl completions.RateLimiter
2626
db database.DB
2727
logger log.Logger
2828
}
2929

3030
func NewCompletionsResolver(db database.DB, logger log.Logger) graphqlbackend.CompletionsResolver {
31-
rl := httpapi.NewRateLimiter(db, redispool.Store, types.CompletionsFeatureChat)
31+
rl := completions.NewRateLimiter(db, redispool.Store, types.CompletionsFeatureChat)
3232
return &completionsResolver{rl: rl, db: db, logger: logger}
3333
}
3434

@@ -53,7 +53,7 @@ func (c *completionsResolver) Completions(ctx context.Context, args graphqlbacke
5353
chatModel = completionsConfig.ChatModel
5454
}
5555

56-
ctx, done := httpapi.Trace(ctx, "resolver", chatModel, int(args.Input.MaxTokensToSample)).
56+
ctx, done := completions.Trace(ctx, "resolver", chatModel, int(args.Input.MaxTokensToSample)).
5757
WithErrorP(&err).
5858
Build()
5959
defer done()

cmd/frontend/internal/dotcom/productsubscription/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ go_library(
2626
deps = [
2727
"//cmd/frontend/graphqlbackend",
2828
"//cmd/frontend/graphqlbackend/graphqlutil",
29+
"//cmd/frontend/internal/cody",
2930
"//internal/accesstoken",
3031
"//internal/actor",
3132
"//internal/audit",
3233
"//internal/auth",
3334
"//internal/authz",
34-
"//internal/cody",
3535
"//internal/codygateway",
3636
"//internal/completions/client/anthropic",
3737
"//internal/completions/client/fireworks",
@@ -93,11 +93,12 @@ go_test(
9393
],
9494
deps = [
9595
"//cmd/frontend/graphqlbackend",
96+
"//cmd/frontend/internal/cody",
97+
"//cmd/frontend/internal/ssc",
9698
"//internal/accesstoken",
9799
"//internal/actor",
98100
"//internal/audit/audittest",
99101
"//internal/authz",
100-
"//internal/cody",
101102
"//internal/conf",
102103
"//internal/database",
103104
"//internal/database/dbmocks",
@@ -111,7 +112,6 @@ go_test(
111112
"//internal/rbac",
112113
"//internal/redispool",
113114
"//internal/slack",
114-
"//internal/ssc",
115115
"//internal/timeutil",
116116
"//internal/types",
117117
"//lib/errors",

cmd/frontend/internal/dotcom/productsubscription/codygateway_dotcom_user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"math"
77

8+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
89
"github.com/sourcegraph/sourcegraph/internal/auth"
9-
"github.com/sourcegraph/sourcegraph/internal/cody"
1010
"github.com/sourcegraph/sourcegraph/internal/conf/conftypes"
1111
"github.com/sourcegraph/sourcegraph/internal/featureflag"
1212

cmd/frontend/internal/dotcom/productsubscription/codygateway_dotcom_user_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ import (
1313
"github.com/stretchr/testify/require"
1414

1515
"github.com/sourcegraph/sourcegraph/cmd/frontend/graphqlbackend"
16+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
1617
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/dotcom/productsubscription"
18+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/ssc"
1719
"github.com/sourcegraph/sourcegraph/internal/accesstoken"
1820
"github.com/sourcegraph/sourcegraph/internal/actor"
1921
"github.com/sourcegraph/sourcegraph/internal/audit/audittest"
2022
"github.com/sourcegraph/sourcegraph/internal/authz"
21-
"github.com/sourcegraph/sourcegraph/internal/cody"
2223
"github.com/sourcegraph/sourcegraph/internal/conf"
2324
"github.com/sourcegraph/sourcegraph/internal/database"
2425
"github.com/sourcegraph/sourcegraph/internal/database/dbtest"
2526
"github.com/sourcegraph/sourcegraph/internal/extsvc"
2627
"github.com/sourcegraph/sourcegraph/internal/featureflag"
2728
"github.com/sourcegraph/sourcegraph/internal/rbac"
28-
"github.com/sourcegraph/sourcegraph/internal/ssc"
2929
"github.com/sourcegraph/sourcegraph/internal/types"
3030
"github.com/sourcegraph/sourcegraph/lib/pointers"
3131
"github.com/sourcegraph/sourcegraph/schema"

cmd/frontend/internal/embeddings/resolvers/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ go_library(
1212
deps = [
1313
"//cmd/frontend/graphqlbackend",
1414
"//cmd/frontend/graphqlbackend/graphqlutil",
15+
"//cmd/frontend/internal/cody",
1516
"//internal/api",
1617
"//internal/auth",
17-
"//internal/cody",
1818
"//internal/conf",
1919
"//internal/database",
2020
"//internal/embeddings",

cmd/frontend/internal/embeddings/resolvers/resolvers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414

1515
"github.com/sourcegraph/sourcegraph/cmd/frontend/graphqlbackend"
1616
"github.com/sourcegraph/sourcegraph/cmd/frontend/graphqlbackend/graphqlutil"
17+
"github.com/sourcegraph/sourcegraph/cmd/frontend/internal/cody"
1718
"github.com/sourcegraph/sourcegraph/internal/api"
1819
"github.com/sourcegraph/sourcegraph/internal/auth"
19-
"github.com/sourcegraph/sourcegraph/internal/cody"
2020
"github.com/sourcegraph/sourcegraph/internal/conf"
2121
"github.com/sourcegraph/sourcegraph/internal/database"
2222
"github.com/sourcegraph/sourcegraph/internal/embeddings"

0 commit comments

Comments
 (0)