-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathsupabase-service.ts
More file actions
254 lines (217 loc) · 7.19 KB
/
Copy pathsupabase-service.ts
File metadata and controls
254 lines (217 loc) · 7.19 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import { getSupabase } from './supabase'
import { Project, Task, ProjectWithStats, ChatMessage } from '@/types'
export class SupabaseService {
private static get supabase() {
return getSupabase()
}
// Project operations
static async getProjects(): Promise<ProjectWithStats[]> {
const { data, error } = await this.supabase
.from('projects')
.select(`
*,
tasks (
id,
status
)
`)
.order('created_at', { ascending: false })
if (error) throw error
// Add task statistics
return data?.map((project: any) => ({
...project,
task_count: project.tasks?.length || 0,
completed_tasks: project.tasks?.filter((t: any) => t.status === 'completed').length || 0,
active_tasks: project.tasks?.filter((t: any) => t.status === 'running').length || 0
})) || []
}
static async createProject(projectData: {
name: string
description?: string
repo_url: string
repo_name: string
repo_owner: string
settings?: any
}): Promise<Project> {
// Get current authenticated user
const { data: { user } } = await this.supabase.auth.getUser()
if (!user) throw new Error('No authenticated user')
const { data, error } = await this.supabase
.from('projects')
.insert([{ ...projectData, user_id: user.id }])
.select()
.single()
if (error) throw error
return data
}
static async updateProject(id: number, updates: Partial<Project>): Promise<Project> {
const { data, error } = await this.supabase
.from('projects')
.update(updates)
.eq('id', id)
.select()
.single()
if (error) throw error
return data
}
static async deleteProject(id: number): Promise<void> {
const { error } = await this.supabase
.from('projects')
.delete()
.eq('id', id)
if (error) throw error
}
static async getProject(id: number): Promise<Project | null> {
const { data, error } = await this.supabase
.from('projects')
.select('*')
.eq('id', id)
.single()
if (error) {
if (error.code === 'PGRST116') return null // Not found
throw error
}
return data
}
// Task operations
static async getTasks(projectId?: number): Promise<Task[]> {
// Get current authenticated user
const { data: { user } } = await this.supabase.auth.getUser()
if (!user) throw new Error('No authenticated user')
let query = this.supabase
.from('tasks')
.select(`
*,
project:projects (
id,
name,
repo_name,
repo_owner
)
`)
.eq('user_id', user.id)
if (projectId) {
query = query.eq('project_id', projectId)
}
const { data, error } = await query.order('created_at', { ascending: false })
if (error) throw error
return data || []
}
static async getTask(id: number): Promise<Task | null> {
const { data, error } = await this.supabase
.from('tasks')
.select(`
*,
project:projects (
id,
name,
repo_name,
repo_owner
)
`)
.eq('id', id)
.single()
if (error) {
if (error.code === 'PGRST116') return null // Not found
throw error
}
return data
}
static async createTask(taskData: {
project_id?: number
repo_url?: string
target_branch?: string
agent?: string
chat_messages?: ChatMessage[]
}): Promise<Task> {
// Get current authenticated user
const { data: { user } } = await this.supabase.auth.getUser()
if (!user) throw new Error('No authenticated user')
const { data, error } = await this.supabase
.from('tasks')
.insert([{
...taskData,
status: 'pending',
user_id: user.id,
chat_messages: taskData.chat_messages as any
}])
.select()
.single()
if (error) throw error
return data
}
static async updateTask(id: number, updates: Partial<Task>): Promise<Task> {
const { data, error } = await this.supabase
.from('tasks')
.update(updates)
.eq('id', id)
.select()
.single()
if (error) throw error
return data
}
static async addChatMessage(taskId: number, message: ChatMessage): Promise<Task> {
// First get the current task to get existing messages
const { data: task, error: fetchError } = await this.supabase
.from('tasks')
.select('chat_messages')
.eq('id', taskId)
.single()
if (fetchError) throw fetchError
const existingMessages = (task.chat_messages as unknown as ChatMessage[]) || []
const updatedMessages = [...existingMessages, message]
const { data, error } = await this.supabase
.from('tasks')
.update({
chat_messages: updatedMessages as any,
updated_at: new Date().toISOString()
})
.eq('id', taskId)
.select()
.single()
if (error) throw error
return data
}
// User operations
static async getCurrentUser() {
const { data: { user } } = await this.supabase.auth.getUser()
return user
}
static async getUserProfile() {
const { data: { user } } = await this.supabase.auth.getUser()
if (!user) return null
const { data, error } = await this.supabase
.from('users')
.select('*')
.eq('id', user.id)
.single()
if (error) {
if (error.code === 'PGRST116') return null // Not found
throw error
}
return data
}
static async updateUserProfile(updates: {
full_name?: string
github_username?: string
github_token?: string
preferences?: any
}) {
const { data: { user } } = await this.supabase.auth.getUser()
if (!user) throw new Error('No authenticated user')
const { data, error } = await this.supabase
.from('users')
.update(updates)
.eq('id', user.id)
.select()
.single()
if (error) throw error
return data
}
// Utility functions
static parseGitHubUrl(url: string): { owner: string, repo: string } {
const match = url.match(/github\.com\/([^\/]+)\/([^\/]+?)(?:\.git)?(?:\/|$)/)
if (!match) throw new Error('Invalid GitHub URL')
return { owner: match[1], repo: match[2] }
}
}