mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
76 lines
2 KiB
TypeScript
76 lines
2 KiB
TypeScript
import axios from "axios"
|
|
import * as vscode from "vscode"
|
|
|
|
import { shareResponseSchema } from "@roo-code/types"
|
|
import { getRooCodeApiUrl } from "./Config"
|
|
import type { AuthService } from "./AuthService"
|
|
import type { SettingsService } from "./SettingsService"
|
|
import { getUserAgent } from "./utils"
|
|
|
|
export type ShareVisibility = "organization" | "public"
|
|
|
|
export class ShareService {
|
|
private authService: AuthService
|
|
private settingsService: SettingsService
|
|
private log: (...args: unknown[]) => void
|
|
|
|
constructor(authService: AuthService, settingsService: SettingsService, log?: (...args: unknown[]) => void) {
|
|
this.authService = authService
|
|
this.settingsService = settingsService
|
|
this.log = log || console.log
|
|
}
|
|
|
|
/**
|
|
* Share a task with specified visibility
|
|
* Returns the share response data
|
|
*/
|
|
async shareTask(taskId: string, visibility: ShareVisibility = "organization") {
|
|
try {
|
|
const sessionToken = this.authService.getSessionToken()
|
|
if (!sessionToken) {
|
|
throw new Error("Authentication required")
|
|
}
|
|
|
|
const response = await axios.post(
|
|
`${getRooCodeApiUrl()}/api/extension/share`,
|
|
{ taskId, visibility },
|
|
{
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${sessionToken}`,
|
|
"User-Agent": getUserAgent(),
|
|
},
|
|
},
|
|
)
|
|
|
|
const data = shareResponseSchema.parse(response.data)
|
|
this.log("[share] Share link created successfully:", data)
|
|
|
|
if (data.success && data.shareUrl) {
|
|
// Copy to clipboard
|
|
await vscode.env.clipboard.writeText(data.shareUrl)
|
|
}
|
|
|
|
return data
|
|
} catch (error) {
|
|
this.log("[share] Error sharing task:", error)
|
|
throw error
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if sharing is available
|
|
*/
|
|
async canShareTask(): Promise<boolean> {
|
|
try {
|
|
if (!this.authService.isAuthenticated()) {
|
|
return false
|
|
}
|
|
|
|
return !!this.settingsService.getSettings()?.cloudSettings?.enableTaskSharing
|
|
} catch (error) {
|
|
this.log("[share] Error checking if task can be shared:", error)
|
|
return false
|
|
}
|
|
}
|
|
}
|