-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDEMO_ACCOUNTS_SETUP.sql
More file actions
433 lines (405 loc) · 11.9 KB
/
Copy pathDEMO_ACCOUNTS_SETUP.sql
File metadata and controls
433 lines (405 loc) · 11.9 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
-- 🎯 DEMO ACCOUNTS FOR APPLE REVIEW
-- Run this script in your Supabase SQL Editor
-- These accounts are specifically for App Store Connect submission
-- ============================================
-- DEMO ACCOUNT 1: Primary for Apple Reviewers
-- ============================================
DO $$
DECLARE
demo_user_id UUID;
BEGIN
-- Create auth user for demo account
INSERT INTO auth.users (
id,
instance_id,
email,
encrypted_password,
email_confirmed_at,
created_at,
updated_at,
confirmation_token,
email_change_token_new,
recovery_token,
aud,
role
) VALUES (
gen_random_uuid(),
'00000000-0000-0000-0000-000000000000',
'demo@tribefind.app',
crypt('DemoUser123!', gen_salt('bf')),
now(),
now(),
now(),
'',
'',
'',
'authenticated',
'authenticated'
)
ON CONFLICT (email) DO UPDATE SET
encrypted_password = crypt('DemoUser123!', gen_salt('bf')),
updated_at = now()
RETURNING id INTO demo_user_id;
-- Get the user ID if it already existed
IF demo_user_id IS NULL THEN
SELECT id INTO demo_user_id FROM auth.users WHERE email = 'demo@tribefind.app';
END IF;
-- Create user profile
INSERT INTO users (
id,
email,
name,
bio,
interests,
location,
latitude,
longitude,
created_at,
updated_at
) VALUES (
demo_user_id,
'demo@tribefind.app',
'Demo User',
'Demo account for testing TribeFind features. Located in San Francisco area with diverse interests. This account is configured for Apple App Store review and testing purposes.',
ARRAY['Photography', 'Coffee', 'Hiking', 'Technology', 'Music', 'Travel', 'Food', 'Art'],
'San Francisco, CA',
37.7749,
-122.4194,
now(),
now()
)
ON CONFLICT (id) DO UPDATE SET
name = EXCLUDED.name,
bio = EXCLUDED.bio,
interests = EXCLUDED.interests,
location = EXCLUDED.location,
latitude = EXCLUDED.latitude,
longitude = EXCLUDED.longitude,
updated_at = now();
-- Add location history
INSERT INTO location_history (
user_id,
latitude,
longitude,
accuracy,
created_at
) VALUES (
demo_user_id,
37.7749,
-122.4194,
10.0,
now()
) ON CONFLICT DO NOTHING;
-- Add user activities
INSERT INTO user_activities (user_id, activity_name, is_active, created_at)
VALUES
(demo_user_id, 'Photography', true, now()),
(demo_user_id, 'Coffee', true, now()),
(demo_user_id, 'Hiking', true, now()),
(demo_user_id, 'Technology', true, now()),
(demo_user_id, 'Music', true, now())
ON CONFLICT DO NOTHING;
RAISE NOTICE 'Demo account created: demo@tribefind.app';
END $$;
-- ============================================
-- TEST ACCOUNT 1: For interaction testing
-- ============================================
DO $$
DECLARE
test1_user_id UUID;
BEGIN
INSERT INTO auth.users (
id,
instance_id,
email,
encrypted_password,
email_confirmed_at,
created_at,
updated_at,
confirmation_token,
email_change_token_new,
recovery_token,
aud,
role
) VALUES (
gen_random_uuid(),
'00000000-0000-0000-0000-000000000000',
'test1@tribefind.app',
crypt('TestUser123!', gen_salt('bf')),
now(),
now(),
now(),
'',
'',
'',
'authenticated',
'authenticated'
)
ON CONFLICT (email) DO UPDATE SET
encrypted_password = crypt('TestUser123!', gen_salt('bf')),
updated_at = now()
RETURNING id INTO test1_user_id;
IF test1_user_id IS NULL THEN
SELECT id INTO test1_user_id FROM auth.users WHERE email = 'test1@tribefind.app';
END IF;
INSERT INTO users (
id,
email,
name,
bio,
interests,
location,
latitude,
longitude,
created_at,
updated_at
) VALUES (
test1_user_id,
'test1@tribefind.app',
'Test User One',
'First test account for beta testing and Apple review. Love outdoor activities and creative pursuits. Available for testing messaging and interaction features.',
ARRAY['Hiking', 'Photography', 'Coffee', 'Art', 'Travel', 'Nature', 'Fitness'],
'San Francisco, CA',
37.7849,
-122.4094,
now(),
now()
)
ON CONFLICT (id) DO UPDATE SET
name = EXCLUDED.name,
bio = EXCLUDED.bio,
interests = EXCLUDED.interests,
location = EXCLUDED.location,
latitude = EXCLUDED.latitude,
longitude = EXCLUDED.longitude,
updated_at = now();
INSERT INTO location_history (
user_id,
latitude,
longitude,
accuracy,
created_at
) VALUES (
test1_user_id,
37.7849,
-122.4094,
10.0,
now()
) ON CONFLICT DO NOTHING;
INSERT INTO user_activities (user_id, activity_name, is_active, created_at)
VALUES
(test1_user_id, 'Hiking', true, now()),
(test1_user_id, 'Photography', true, now()),
(test1_user_id, 'Coffee', true, now()),
(test1_user_id, 'Art', true, now())
ON CONFLICT DO NOTHING;
RAISE NOTICE 'Test account 1 created: test1@tribefind.app';
END $$;
-- ============================================
-- TEST ACCOUNT 2: For interaction testing
-- ============================================
DO $$
DECLARE
test2_user_id UUID;
BEGIN
INSERT INTO auth.users (
id,
instance_id,
email,
encrypted_password,
email_confirmed_at,
created_at,
updated_at,
confirmation_token,
email_change_token_new,
recovery_token,
aud,
role
) VALUES (
gen_random_uuid(),
'00000000-0000-0000-0000-000000000000',
'test2@tribefind.app',
crypt('TestUser123!', gen_salt('bf')),
now(),
now(),
now(),
'',
'',
'',
'authenticated',
'authenticated'
)
ON CONFLICT (email) DO UPDATE SET
encrypted_password = crypt('TestUser123!', gen_salt('bf')),
updated_at = now()
RETURNING id INTO test2_user_id;
IF test2_user_id IS NULL THEN
SELECT id INTO test2_user_id FROM auth.users WHERE email = 'test2@tribefind.app';
END IF;
INSERT INTO users (
id,
email,
name,
bio,
interests,
location,
latitude,
longitude,
created_at,
updated_at
) VALUES (
test2_user_id,
'test2@tribefind.app',
'Test User Two',
'Second test account for interaction testing and Apple review. Focused on fitness and social activities. Great for demonstrating messaging and discovery features.',
ARRAY['Fitness', 'Music', 'Travel', 'Food', 'Sports', 'Dancing', 'Yoga'],
'San Francisco, CA',
37.7649,
-122.4294,
now(),
now()
)
ON CONFLICT (id) DO UPDATE SET
name = EXCLUDED.name,
bio = EXCLUDED.bio,
interests = EXCLUDED.interests,
location = EXCLUDED.location,
latitude = EXCLUDED.latitude,
longitude = EXCLUDED.longitude,
updated_at = now();
INSERT INTO location_history (
user_id,
latitude,
longitude,
accuracy,
created_at
) VALUES (
test2_user_id,
37.7649,
-122.4294,
10.0,
now()
) ON CONFLICT DO NOTHING;
INSERT INTO user_activities (user_id, activity_name, is_active, created_at)
VALUES
(test2_user_id, 'Fitness', true, now()),
(test2_user_id, 'Music', true, now()),
(test2_user_id, 'Travel', true, now()),
(test2_user_id, 'Food', true, now())
ON CONFLICT DO NOTHING;
RAISE NOTICE 'Test account 2 created: test2@tribefind.app';
END $$;
-- ============================================
-- CREATE SAMPLE CONVERSATIONS FOR TESTING
-- ============================================
-- Create a sample conversation between demo and test1
INSERT INTO conversations (
id,
participant_1_id,
participant_2_id,
last_message,
last_message_at,
created_at,
updated_at
)
SELECT
gen_random_uuid(),
(SELECT id FROM auth.users WHERE email = 'demo@tribefind.app'),
(SELECT id FROM auth.users WHERE email = 'test1@tribefind.app'),
'Hey! I see we both love photography and hiking. Want to explore some trails together?',
now() - interval '1 hour',
now() - interval '2 hours',
now() - interval '1 hour'
WHERE EXISTS (SELECT 1 FROM auth.users WHERE email = 'demo@tribefind.app')
AND EXISTS (SELECT 1 FROM auth.users WHERE email = 'test1@tribefind.app')
ON CONFLICT DO NOTHING;
-- Add sample messages to the conversation
DO $$
DECLARE
conv_id UUID;
demo_id UUID;
test1_id UUID;
BEGIN
SELECT id INTO demo_id FROM auth.users WHERE email = 'demo@tribefind.app';
SELECT id INTO test1_id FROM auth.users WHERE email = 'test1@tribefind.app';
SELECT id INTO conv_id FROM conversations
WHERE (participant_1_id = demo_id AND participant_2_id = test1_id)
OR (participant_1_id = test1_id AND participant_2_id = demo_id);
IF conv_id IS NOT NULL THEN
INSERT INTO messages (
id,
conversation_id,
sender_id,
content,
created_at
) VALUES
(
gen_random_uuid(),
conv_id,
demo_id,
'Hi there! I noticed we share a love for photography and hiking. Would you like to explore some trails together this weekend?',
now() - interval '2 hours'
),
(
gen_random_uuid(),
conv_id,
test1_id,
'That sounds amazing! I''ve been wanting to check out the trails in Golden Gate Park. Are you free Saturday morning?',
now() - interval '1 hour 30 minutes'
),
(
gen_random_uuid(),
conv_id,
demo_id,
'Perfect! Saturday morning works great. Should we meet at the park entrance around 9 AM?',
now() - interval '1 hour'
)
ON CONFLICT DO NOTHING;
END IF;
END $$;
-- ============================================
-- VERIFY DEMO ACCOUNTS CREATION
-- ============================================
-- Display created accounts for verification
SELECT
'DEMO ACCOUNTS SUMMARY' as section,
'' as email,
'' as name,
'' as location,
'' as interests_count
UNION ALL
SELECT
'===================' as section,
'' as email,
'' as name,
'' as location,
'' as interests_count
UNION ALL
SELECT
'Account' as section,
u.email,
p.name,
p.location,
array_length(p.interests, 1)::text as interests_count
FROM auth.users u
LEFT JOIN users p ON u.id = p.id
WHERE u.email IN ('demo@tribefind.app', 'test1@tribefind.app', 'test2@tribefind.app')
ORDER BY u.email;
-- Display interests for each account
SELECT
u.email,
unnest(p.interests) as interest
FROM auth.users u
JOIN users p ON u.id = p.id
WHERE u.email IN ('demo@tribefind.app', 'test1@tribefind.app', 'test2@tribefind.app')
ORDER BY u.email, interest;
-- Display conversation count
SELECT
'Sample conversations created: ' || count(*)::text as summary
FROM conversations c
JOIN auth.users u1 ON c.participant_1_id = u1.id
JOIN auth.users u2 ON c.participant_2_id = u2.id
WHERE u1.email IN ('demo@tribefind.app', 'test1@tribefind.app', 'test2@tribefind.app')
OR u2.email IN ('demo@tribefind.app', 'test1@tribefind.app', 'test2@tribefind.app');
-- Success message
SELECT '✅ DEMO ACCOUNTS READY FOR APPLE REVIEW!' as status;