|
|
@@ -1,4 +1,7 @@
|
|
|
import { File } from "@/file"
|
|
|
+import { Ripgrep } from "@/file/ripgrep"
|
|
|
+import * as InstanceState from "@/effect/instance-state"
|
|
|
+import { LSP } from "@/lsp"
|
|
|
import { Effect, Layer, Schema } from "effect"
|
|
|
import { HttpApi, HttpApiBuilder, HttpApiEndpoint, HttpApiGroup, OpenApi } from "effect/unstable/httpapi"
|
|
|
import { Authorization } from "./auth"
|
|
|
@@ -7,7 +10,31 @@ const FileQuery = Schema.Struct({
|
|
|
path: Schema.String,
|
|
|
})
|
|
|
|
|
|
+const FindTextQuery = Schema.Struct({
|
|
|
+ pattern: Schema.String,
|
|
|
+})
|
|
|
+
|
|
|
+const FindFileQuery = Schema.Struct({
|
|
|
+ query: Schema.String,
|
|
|
+ dirs: Schema.optional(Schema.Literals(["true", "false"])),
|
|
|
+ type: Schema.optional(Schema.Literals(["file", "directory"])),
|
|
|
+ limit: Schema.optional(
|
|
|
+ Schema.NumberFromString.check(
|
|
|
+ Schema.isInt(),
|
|
|
+ Schema.isGreaterThanOrEqualTo(1),
|
|
|
+ Schema.isLessThanOrEqualTo(200),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+})
|
|
|
+
|
|
|
+const FindSymbolQuery = Schema.Struct({
|
|
|
+ query: Schema.String,
|
|
|
+})
|
|
|
+
|
|
|
export const FilePaths = {
|
|
|
+ findText: "/find",
|
|
|
+ findFile: "/find/file",
|
|
|
+ findSymbol: "/find/symbol",
|
|
|
list: "/file",
|
|
|
content: "/file/content",
|
|
|
status: "/file/status",
|
|
|
@@ -17,6 +44,36 @@ export const FileApi = HttpApi.make("file")
|
|
|
.add(
|
|
|
HttpApiGroup.make("file")
|
|
|
.add(
|
|
|
+ HttpApiEndpoint.get("findText", FilePaths.findText, {
|
|
|
+ query: FindTextQuery,
|
|
|
+ success: Schema.Array(Ripgrep.SearchMatch),
|
|
|
+ }).annotateMerge(
|
|
|
+ OpenApi.annotations({
|
|
|
+ identifier: "find.text",
|
|
|
+ summary: "Find text",
|
|
|
+ description: "Search for text patterns across files in the project using ripgrep.",
|
|
|
+ }),
|
|
|
+ ),
|
|
|
+ HttpApiEndpoint.get("findFile", FilePaths.findFile, {
|
|
|
+ query: FindFileQuery,
|
|
|
+ success: Schema.Array(Schema.String),
|
|
|
+ }).annotateMerge(
|
|
|
+ OpenApi.annotations({
|
|
|
+ identifier: "find.files",
|
|
|
+ summary: "Find files",
|
|
|
+ description: "Search for files or directories by name or pattern in the project directory.",
|
|
|
+ }),
|
|
|
+ ),
|
|
|
+ HttpApiEndpoint.get("findSymbol", FilePaths.findSymbol, {
|
|
|
+ query: FindSymbolQuery,
|
|
|
+ success: Schema.Array(LSP.Symbol),
|
|
|
+ }).annotateMerge(
|
|
|
+ OpenApi.annotations({
|
|
|
+ identifier: "find.symbols",
|
|
|
+ summary: "Find symbols",
|
|
|
+ description: "Search for workspace symbols like functions, classes, and variables using LSP.",
|
|
|
+ }),
|
|
|
+ ),
|
|
|
HttpApiEndpoint.get("list", FilePaths.list, {
|
|
|
query: FileQuery,
|
|
|
success: Schema.Array(File.Node),
|
|
|
@@ -66,6 +123,28 @@ export const FileApi = HttpApi.make("file")
|
|
|
export const fileHandlers = Layer.unwrap(
|
|
|
Effect.gen(function* () {
|
|
|
const svc = yield* File.Service
|
|
|
+ const ripgrep = yield* Ripgrep.Service
|
|
|
+
|
|
|
+ const findText = Effect.fn("FileHttpApi.findText")(function* (ctx: { query: { pattern: string } }) {
|
|
|
+ return (yield* ripgrep
|
|
|
+ .search({ cwd: (yield* InstanceState.context).directory, pattern: ctx.query.pattern, limit: 10 })
|
|
|
+ .pipe(Effect.orDie)).items
|
|
|
+ })
|
|
|
+
|
|
|
+ const findFile = Effect.fn("FileHttpApi.findFile")(function* (ctx: {
|
|
|
+ query: { query: string; dirs?: "true" | "false"; type?: "file" | "directory"; limit?: number }
|
|
|
+ }) {
|
|
|
+ return yield* svc.search({
|
|
|
+ query: ctx.query.query,
|
|
|
+ limit: ctx.query.limit ?? 10,
|
|
|
+ dirs: ctx.query.dirs !== "false",
|
|
|
+ type: ctx.query.type,
|
|
|
+ })
|
|
|
+ })
|
|
|
+
|
|
|
+ const findSymbol = Effect.fn("FileHttpApi.findSymbol")(function* () {
|
|
|
+ return []
|
|
|
+ })
|
|
|
|
|
|
const list = Effect.fn("FileHttpApi.list")(function* (ctx: { query: { path: string } }) {
|
|
|
return yield* svc.list(ctx.query.path)
|
|
|
@@ -80,7 +159,13 @@ export const fileHandlers = Layer.unwrap(
|
|
|
})
|
|
|
|
|
|
return HttpApiBuilder.group(FileApi, "file", (handlers) =>
|
|
|
- handlers.handle("list", list).handle("content", content).handle("status", status),
|
|
|
+ handlers
|
|
|
+ .handle("findText", findText)
|
|
|
+ .handle("findFile", findFile)
|
|
|
+ .handle("findSymbol", findSymbol)
|
|
|
+ .handle("list", list)
|
|
|
+ .handle("content", content)
|
|
|
+ .handle("status", status),
|
|
|
)
|
|
|
}),
|
|
|
-).pipe(Layer.provide(File.defaultLayer))
|
|
|
+).pipe(Layer.provide(File.defaultLayer), Layer.provide(Ripgrep.defaultLayer))
|