-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathtaskCreationHostImpl.ts
More file actions
233 lines (204 loc) · 6.54 KB
/
Copy pathtaskCreationHostImpl.ts
File metadata and controls
233 lines (204 loc) · 6.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import type { ContentBlock } from "@agentclientprotocol/sdk";
import { CLOUD_USAGE_LIMIT_ERROR_MESSAGE } from "@posthog/api-client/posthog-client";
import {
CLOUD_ARTIFACT_SERVICE,
type CloudArtifactClient,
} from "@posthog/core/sessions/cloudArtifactIdentifiers";
import type { CloudArtifactService } from "@posthog/core/sessions/cloudArtifactService";
import { getCloudPromptTransport } from "@posthog/core/sessions/cloudPrompt";
import type { TaskCreationApiClient } from "@posthog/core/task-detail/taskCreationApiClient";
import type {
CloudPromptTransport,
CreatedWorkspaceInfo,
CreateWorkspaceArgs,
DetectedRepo,
ImportedClaudeCliSession,
ITaskCreationHost,
RecordClaudeCliImportArgs,
SetupActionDispatch,
TaskEnvironment,
TaskFolderInfo,
} from "@posthog/core/task-detail/taskCreationHost";
import { resolveService } from "@posthog/di/container";
import {
HOST_TRPC_CLIENT,
type HostTrpcClient,
} from "@posthog/host-router/client";
import { expandTildePath, type Workspace } from "@posthog/shared";
import { injectable } from "inversify";
import { track } from "../../shell/analytics";
import { getAuthenticatedClient } from "../auth/authClientImperative";
import { assertCloudUsageAvailable } from "../billing/preflightCloudUsage";
import { resolveLocalSkillPrompt } from "../message-editor/commands";
import { DEFAULT_PANEL_IDS } from "../panels/panelConstants";
import { usePanelLayoutStore } from "../panels/panelLayoutStore";
import { useProvisioningStore } from "../provisioning/store";
interface EnvironmentHostClient {
environment: {
get: {
query(args: {
repoPath: string;
id: string;
}): Promise<TaskEnvironment | null>;
};
};
}
function hostClient(): HostTrpcClient {
return resolveService<HostTrpcClient>(HOST_TRPC_CLIENT);
}
@injectable()
export class TrpcTaskCreationHost implements ITaskCreationHost {
getAuthenticatedClient(): Promise<TaskCreationApiClient | null> {
return getAuthenticatedClient() as Promise<TaskCreationApiClient | null>;
}
async assertCloudUsageAvailable(): Promise<void> {
if (!(await assertCloudUsageAvailable())) {
throw new Error(CLOUD_USAGE_LIMIT_ERROR_MESSAGE);
}
}
async getTaskDirectory(
taskId: string,
repoKey?: string,
): Promise<string | null> {
const workspace = await this.getWorkspace(taskId);
if (workspace?.folderPath) {
return expandTildePath(workspace.folderPath);
}
if (repoKey) {
const repo = await hostClient().folders.getRepositoryByRemoteUrl.query({
remoteUrl: repoKey,
});
if (repo) {
return expandTildePath(repo.path);
}
}
return null;
}
async ensureScratchDir(taskId: string): Promise<string> {
const { path } = await hostClient().workspace.ensureScratchDir.mutate({
taskId,
});
return path;
}
async getWorkspace(taskId: string): Promise<Workspace | null> {
const workspaces = await hostClient().workspace.getAll.query();
return workspaces?.[taskId] ?? null;
}
createWorkspace(args: CreateWorkspaceArgs): Promise<CreatedWorkspaceInfo> {
return hostClient().workspace.create.mutate(args);
}
async deleteWorkspace(args: {
taskId: string;
mainRepoPath: string;
}): Promise<void> {
await hostClient().workspace.delete.mutate(args);
}
getFolders(): Promise<TaskFolderInfo[]> {
return hostClient().folders.getFolders.query();
}
addFolder(args: { folderPath: string }): Promise<TaskFolderInfo> {
return hostClient().folders.addFolder.mutate(args);
}
async addAdditionalDirectory(args: {
taskId: string;
path: string;
}): Promise<void> {
await hostClient().additionalDirectories.addForTask.mutate(args);
}
async removeAdditionalDirectory(args: {
taskId: string;
path: string;
}): Promise<void> {
await hostClient().additionalDirectories.removeForTask.mutate(args);
}
getEnvironment(args: {
repoPath: string;
id: string;
}): Promise<TaskEnvironment | null> {
return (
hostClient() as unknown as EnvironmentHostClient
).environment.get.query(args);
}
detectRepo(args: { directoryPath: string }): Promise<DetectedRepo | null> {
return hostClient().git.detectRepo.query(args);
}
getCloudPromptTransport(
prompt: string | ContentBlock[],
filePaths?: string[],
): CloudPromptTransport {
return getCloudPromptTransport(prompt, filePaths);
}
async resolveLocalSkillCommandPrompt(prompt: string): Promise<string> {
return (
(await resolveLocalSkillPrompt(prompt, () =>
hostClient().skills.list.query(),
)) ?? prompt
);
}
uploadRunAttachments(
client: TaskCreationApiClient,
taskId: string,
runId: string,
filePaths: string[],
skillBundles?: CloudPromptTransport["skillBundles"],
): Promise<string[]> {
return resolveService<CloudArtifactService>(
CLOUD_ARTIFACT_SERVICE,
).uploadRunAttachments(
client as unknown as CloudArtifactClient,
taskId,
runId,
filePaths,
skillBundles,
);
}
setProvisioningActive(taskId: string): void {
useProvisioningStore.getState().setActive(taskId);
}
clearProvisioning(taskId: string): void {
useProvisioningStore.getState().clear(taskId);
}
dispatchSetupAction(args: SetupActionDispatch): void {
const actionId = `setup-${args.taskId}-${Date.now()}`;
usePanelLayoutStore
.getState()
.addActionTab(args.taskId, DEFAULT_PANEL_IDS.MAIN_PANEL, {
actionId,
command: args.command,
cwd: args.cwd,
label: args.label,
});
}
track(event: string, props?: Record<string, unknown>): void {
(track as (event: string, props?: Record<string, unknown>) => void)(
event,
props,
);
}
importClaudeCliSession(args: {
repoPath: string;
sourceSessionId: string;
}): Promise<ImportedClaudeCliSession> {
return hostClient().claudeCliSessions.import.mutate(args);
}
async deleteClaudeCliImport(args: {
repoPath: string;
importedSessionId: string;
}): Promise<void> {
await hostClient().claudeCliSessions.deleteImport.mutate(args);
}
async recordClaudeCliImport(args: RecordClaudeCliImportArgs): Promise<void> {
await hostClient().claudeCliSessions.recordImport.mutate(args);
}
async deleteClaudeCliImportRecord(args: {
importedSessionId: string;
}): Promise<void> {
await hostClient().claudeCliSessions.deleteImportRecord.mutate(args);
}
async linkTaskBranch(args: {
taskId: string;
branchName: string;
}): Promise<void> {
await hostClient().workspace.linkBranch.mutate(args);
}
}