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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
use super::*;
use rpc::proto::channel_member::Kind;
use sea_orm::TryGetableMany;

impl Database {
    #[cfg(test)]
    pub async fn all_channels(&self) -> Result<Vec<(ChannelId, String)>> {
        self.transaction(move |tx| async move {
            let mut channels = Vec::new();
            let mut rows = channel::Entity::find().stream(&*tx).await?;
            while let Some(row) = rows.next().await {
                let row = row?;
                channels.push((row.id, row.name));
            }
            Ok(channels)
        })
        .await
    }

    #[cfg(test)]
    pub async fn create_root_channel(&self, name: &str, creator_id: UserId) -> Result<ChannelId> {
        Ok(self
            .create_channel(name, None, creator_id)
            .await?
            .channel
            .id)
    }

    #[cfg(test)]
    pub async fn create_sub_channel(
        &self,
        name: &str,
        parent: ChannelId,
        creator_id: UserId,
    ) -> Result<ChannelId> {
        Ok(self
            .create_channel(name, Some(parent), creator_id)
            .await?
            .channel
            .id)
    }

    pub async fn create_channel(
        &self,
        name: &str,
        parent_channel_id: Option<ChannelId>,
        admin_id: UserId,
    ) -> Result<CreateChannelResult> {
        let name = Self::sanitize_channel_name(name)?;
        self.transaction(move |tx| async move {
            let mut parent = None;

            if let Some(parent_channel_id) = parent_channel_id {
                let parent_channel = self.get_channel_internal(parent_channel_id, &*tx).await?;
                self.check_user_is_channel_admin(&parent_channel, admin_id, &*tx)
                    .await?;
                parent = Some(parent_channel);
            }

            let channel = channel::ActiveModel {
                id: ActiveValue::NotSet,
                name: ActiveValue::Set(name.to_string()),
                visibility: ActiveValue::Set(ChannelVisibility::Members),
                parent_path: ActiveValue::Set(
                    parent
                        .as_ref()
                        .map_or(String::new(), |parent| parent.path()),
                ),
            }
            .insert(&*tx)
            .await?;

            let participants_to_update;
            if let Some(parent) = &parent {
                participants_to_update = self
                    .participants_to_notify_for_channel_change(parent, &*tx)
                    .await?;
            } else {
                participants_to_update = vec![];

                channel_member::ActiveModel {
                    id: ActiveValue::NotSet,
                    channel_id: ActiveValue::Set(channel.id),
                    user_id: ActiveValue::Set(admin_id),
                    accepted: ActiveValue::Set(true),
                    role: ActiveValue::Set(ChannelRole::Admin),
                }
                .insert(&*tx)
                .await?;
            };

            Ok(CreateChannelResult {
                channel: Channel::from_model(channel, ChannelRole::Admin),
                participants_to_update,
            })
        })
        .await
    }

    pub async fn join_channel(
        &self,
        channel_id: ChannelId,
        user_id: UserId,
        connection: ConnectionId,
        environment: &str,
    ) -> Result<(JoinRoom, Option<MembershipUpdated>, ChannelRole)> {
        self.transaction(move |tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            let mut role = self.channel_role_for_user(&channel, user_id, &*tx).await?;

            let mut accept_invite_result = None;

            if role.is_none() {
                if let Some(invitation) = self
                    .pending_invite_for_channel(&channel, user_id, &*tx)
                    .await?
                {
                    // note, this may be a parent channel
                    role = Some(invitation.role);
                    channel_member::Entity::update(channel_member::ActiveModel {
                        accepted: ActiveValue::Set(true),
                        ..invitation.into_active_model()
                    })
                    .exec(&*tx)
                    .await?;

                    accept_invite_result = Some(
                        self.calculate_membership_updated(&channel, user_id, &*tx)
                            .await?,
                    );

                    debug_assert!(
                        self.channel_role_for_user(&channel, user_id, &*tx).await? == role
                    );
                }
            }

            if channel.visibility == ChannelVisibility::Public {
                role = Some(ChannelRole::Guest);
                let channel_to_join = self
                    .public_ancestors_including_self(&channel, &*tx)
                    .await?
                    .first()
                    .cloned()
                    .unwrap_or(channel.clone());

                channel_member::Entity::insert(channel_member::ActiveModel {
                    id: ActiveValue::NotSet,
                    channel_id: ActiveValue::Set(channel_to_join.id),
                    user_id: ActiveValue::Set(user_id),
                    accepted: ActiveValue::Set(true),
                    role: ActiveValue::Set(ChannelRole::Guest),
                })
                .exec(&*tx)
                .await?;

                accept_invite_result = Some(
                    self.calculate_membership_updated(&channel_to_join, user_id, &*tx)
                        .await?,
                );

                debug_assert!(self.channel_role_for_user(&channel, user_id, &*tx).await? == role);
            }

            if role.is_none() || role == Some(ChannelRole::Banned) {
                Err(anyhow!("not allowed"))?
            }

            let live_kit_room = format!("channel-{}", nanoid::nanoid!(30));
            let room_id = self
                .get_or_create_channel_room(channel_id, &live_kit_room, environment, &*tx)
                .await?;

            self.join_channel_room_internal(room_id, user_id, connection, &*tx)
                .await
                .map(|jr| (jr, accept_invite_result, role.unwrap()))
        })
        .await
    }

    pub async fn set_channel_visibility(
        &self,
        channel_id: ChannelId,
        visibility: ChannelVisibility,
        admin_id: UserId,
    ) -> Result<SetChannelVisibilityResult> {
        self.transaction(move |tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;

            self.check_user_is_channel_admin(&channel, admin_id, &*tx)
                .await?;

            let previous_members = self
                .get_channel_participant_details_internal(&channel, &*tx)
                .await?;

            let mut model = channel.into_active_model();
            model.visibility = ActiveValue::Set(visibility);
            let channel = model.update(&*tx).await?;

            let mut participants_to_update: HashMap<UserId, ChannelsForUser> = self
                .participants_to_notify_for_channel_change(&channel, &*tx)
                .await?
                .into_iter()
                .collect();

            let mut channels_to_remove: Vec<ChannelId> = vec![];
            let mut participants_to_remove: HashSet<UserId> = HashSet::default();
            match visibility {
                ChannelVisibility::Members => {
                    let all_descendents: Vec<ChannelId> = self
                        .get_channel_descendants_including_self(vec![channel_id], &*tx)
                        .await?
                        .into_iter()
                        .map(|channel| channel.id)
                        .collect();

                    channels_to_remove = channel::Entity::find()
                        .filter(
                            channel::Column::Id
                                .is_in(all_descendents)
                                .and(channel::Column::Visibility.eq(ChannelVisibility::Public)),
                        )
                        .all(&*tx)
                        .await?
                        .into_iter()
                        .map(|channel| channel.id)
                        .collect();

                    channels_to_remove.push(channel_id);

                    for member in previous_members {
                        if member.role.can_only_see_public_descendants() {
                            participants_to_remove.insert(member.user_id);
                        }
                    }
                }
                ChannelVisibility::Public => {
                    if let Some(public_parent) = self.public_parent_channel(&channel, &*tx).await? {
                        let parent_updates = self
                            .participants_to_notify_for_channel_change(&public_parent, &*tx)
                            .await?;

                        for (user_id, channels) in parent_updates {
                            participants_to_update.insert(user_id, channels);
                        }
                    }
                }
            }

            Ok(SetChannelVisibilityResult {
                participants_to_update,
                participants_to_remove,
                channels_to_remove,
            })
        })
        .await
    }

    pub async fn delete_channel(
        &self,
        channel_id: ChannelId,
        user_id: UserId,
    ) -> Result<(Vec<ChannelId>, Vec<UserId>)> {
        self.transaction(move |tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            self.check_user_is_channel_admin(&channel, user_id, &*tx)
                .await?;

            let members_to_notify: Vec<UserId> = channel_member::Entity::find()
                .filter(channel_member::Column::ChannelId.is_in(channel.ancestors_including_self()))
                .select_only()
                .column(channel_member::Column::UserId)
                .distinct()
                .into_values::<_, QueryUserIds>()
                .all(&*tx)
                .await?;

            let channels_to_remove = self
                .get_channel_descendants_including_self(vec![channel.id], &*tx)
                .await?
                .into_iter()
                .map(|channel| channel.id)
                .collect::<Vec<_>>();

            channel::Entity::delete_many()
                .filter(channel::Column::Id.is_in(channels_to_remove.iter().copied()))
                .exec(&*tx)
                .await?;

            Ok((channels_to_remove, members_to_notify))
        })
        .await
    }

    pub async fn invite_channel_member(
        &self,
        channel_id: ChannelId,
        invitee_id: UserId,
        inviter_id: UserId,
        role: ChannelRole,
    ) -> Result<InviteMemberResult> {
        self.transaction(move |tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            self.check_user_is_channel_admin(&channel, inviter_id, &*tx)
                .await?;

            channel_member::ActiveModel {
                id: ActiveValue::NotSet,
                channel_id: ActiveValue::Set(channel_id),
                user_id: ActiveValue::Set(invitee_id),
                accepted: ActiveValue::Set(false),
                role: ActiveValue::Set(role),
            }
            .insert(&*tx)
            .await?;

            let channel = Channel::from_model(channel, role);

            let notifications = self
                .create_notification(
                    invitee_id,
                    rpc::Notification::ChannelInvitation {
                        channel_id: channel_id.to_proto(),
                        channel_name: channel.name.clone(),
                        inviter_id: inviter_id.to_proto(),
                    },
                    true,
                    &*tx,
                )
                .await?
                .into_iter()
                .collect();

            Ok(InviteMemberResult {
                channel,
                notifications,
            })
        })
        .await
    }

    fn sanitize_channel_name(name: &str) -> Result<&str> {
        let new_name = name.trim().trim_start_matches('#');
        if new_name == "" {
            Err(anyhow!("channel name can't be blank"))?;
        }
        Ok(new_name)
    }

    pub async fn rename_channel(
        &self,
        channel_id: ChannelId,
        admin_id: UserId,
        new_name: &str,
    ) -> Result<RenameChannelResult> {
        self.transaction(move |tx| async move {
            let new_name = Self::sanitize_channel_name(new_name)?.to_string();

            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            let role = self
                .check_user_is_channel_admin(&channel, admin_id, &*tx)
                .await?;

            let mut model = channel.into_active_model();
            model.name = ActiveValue::Set(new_name.clone());
            let channel = model.update(&*tx).await?;

            let participants = self
                .get_channel_participant_details_internal(&channel, &*tx)
                .await?;

            Ok(RenameChannelResult {
                channel: Channel::from_model(channel.clone(), role),
                participants_to_update: participants
                    .iter()
                    .map(|participant| {
                        (
                            participant.user_id,
                            Channel::from_model(channel.clone(), participant.role),
                        )
                    })
                    .collect(),
            })
        })
        .await
    }

    pub async fn respond_to_channel_invite(
        &self,
        channel_id: ChannelId,
        user_id: UserId,
        accept: bool,
    ) -> Result<RespondToChannelInvite> {
        self.transaction(move |tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;

            let membership_update = if accept {
                let rows_affected = channel_member::Entity::update_many()
                    .set(channel_member::ActiveModel {
                        accepted: ActiveValue::Set(accept),
                        ..Default::default()
                    })
                    .filter(
                        channel_member::Column::ChannelId
                            .eq(channel_id)
                            .and(channel_member::Column::UserId.eq(user_id))
                            .and(channel_member::Column::Accepted.eq(false)),
                    )
                    .exec(&*tx)
                    .await?
                    .rows_affected;

                if rows_affected == 0 {
                    Err(anyhow!("no such invitation"))?;
                }

                Some(
                    self.calculate_membership_updated(&channel, user_id, &*tx)
                        .await?,
                )
            } else {
                let rows_affected = channel_member::Entity::delete_many()
                    .filter(
                        channel_member::Column::ChannelId
                            .eq(channel_id)
                            .and(channel_member::Column::UserId.eq(user_id))
                            .and(channel_member::Column::Accepted.eq(false)),
                    )
                    .exec(&*tx)
                    .await?
                    .rows_affected;
                if rows_affected == 0 {
                    Err(anyhow!("no such invitation"))?;
                }

                None
            };

            Ok(RespondToChannelInvite {
                membership_update,
                notifications: self
                    .mark_notification_as_read_with_response(
                        user_id,
                        &rpc::Notification::ChannelInvitation {
                            channel_id: channel_id.to_proto(),
                            channel_name: Default::default(),
                            inviter_id: Default::default(),
                        },
                        accept,
                        &*tx,
                    )
                    .await?
                    .into_iter()
                    .collect(),
            })
        })
        .await
    }

    async fn calculate_membership_updated(
        &self,
        channel: &channel::Model,
        user_id: UserId,
        tx: &DatabaseTransaction,
    ) -> Result<MembershipUpdated> {
        let new_channels = self.get_user_channels(user_id, Some(channel), &*tx).await?;
        let removed_channels = self
            .get_channel_descendants_including_self(vec![channel.id], &*tx)
            .await?
            .into_iter()
            .filter_map(|channel| {
                if !new_channels.channels.iter().any(|c| c.id == channel.id) {
                    Some(channel.id)
                } else {
                    None
                }
            })
            .collect::<Vec<_>>();

        Ok(MembershipUpdated {
            channel_id: channel.id,
            new_channels,
            removed_channels,
        })
    }

    pub async fn remove_channel_member(
        &self,
        channel_id: ChannelId,
        member_id: UserId,
        admin_id: UserId,
    ) -> Result<RemoveChannelMemberResult> {
        self.transaction(|tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            self.check_user_is_channel_admin(&channel, admin_id, &*tx)
                .await?;

            let result = channel_member::Entity::delete_many()
                .filter(
                    channel_member::Column::ChannelId
                        .eq(channel_id)
                        .and(channel_member::Column::UserId.eq(member_id)),
                )
                .exec(&*tx)
                .await?;

            if result.rows_affected == 0 {
                Err(anyhow!("no such member"))?;
            }

            Ok(RemoveChannelMemberResult {
                membership_update: self
                    .calculate_membership_updated(&channel, member_id, &*tx)
                    .await?,
                notification_id: self
                    .remove_notification(
                        member_id,
                        rpc::Notification::ChannelInvitation {
                            channel_id: channel_id.to_proto(),
                            channel_name: Default::default(),
                            inviter_id: Default::default(),
                        },
                        &*tx,
                    )
                    .await?,
            })
        })
        .await
    }

    pub async fn get_channel_invites_for_user(&self, user_id: UserId) -> Result<Vec<Channel>> {
        self.transaction(|tx| async move {
            let mut role_for_channel: HashMap<ChannelId, ChannelRole> = HashMap::default();

            let channel_invites = channel_member::Entity::find()
                .filter(
                    channel_member::Column::UserId
                        .eq(user_id)
                        .and(channel_member::Column::Accepted.eq(false)),
                )
                .all(&*tx)
                .await?;

            for invite in channel_invites {
                role_for_channel.insert(invite.channel_id, invite.role);
            }

            let channels = channel::Entity::find()
                .filter(channel::Column::Id.is_in(role_for_channel.keys().copied()))
                .all(&*tx)
                .await?;

            let channels = channels
                .into_iter()
                .filter_map(|channel| {
                    let role = *role_for_channel.get(&channel.id)?;
                    Some(Channel::from_model(channel, role))
                })
                .collect();

            Ok(channels)
        })
        .await
    }

    pub async fn get_channels_for_user(&self, user_id: UserId) -> Result<ChannelsForUser> {
        self.transaction(|tx| async move {
            let tx = tx;

            self.get_user_channels(user_id, None, &tx).await
        })
        .await
    }

    pub async fn get_user_channels(
        &self,
        user_id: UserId,
        ancestor_channel: Option<&channel::Model>,
        tx: &DatabaseTransaction,
    ) -> Result<ChannelsForUser> {
        let channel_memberships = channel_member::Entity::find()
            .filter(
                channel_member::Column::UserId
                    .eq(user_id)
                    .and(channel_member::Column::Accepted.eq(true)),
            )
            .all(&*tx)
            .await?;

        let descendants = self
            .get_channel_descendants_including_self(
                channel_memberships.iter().map(|m| m.channel_id),
                &*tx,
            )
            .await?;

        let mut roles_by_channel_id: HashMap<ChannelId, ChannelRole> = HashMap::default();
        for membership in channel_memberships.iter() {
            roles_by_channel_id.insert(membership.channel_id, membership.role);
        }

        let mut visible_channel_ids: HashSet<ChannelId> = HashSet::default();

        let channels: Vec<Channel> = descendants
            .into_iter()
            .filter_map(|channel| {
                let parent_role = channel
                    .parent_id()
                    .and_then(|parent_id| roles_by_channel_id.get(&parent_id));

                let role = if let Some(parent_role) = parent_role {
                    let role = if let Some(existing_role) = roles_by_channel_id.get(&channel.id) {
                        existing_role.max(*parent_role)
                    } else {
                        *parent_role
                    };
                    roles_by_channel_id.insert(channel.id, role);
                    role
                } else {
                    *roles_by_channel_id.get(&channel.id)?
                };

                let can_see_parent_paths = role.can_see_all_descendants()
                    || role.can_only_see_public_descendants()
                        && channel.visibility == ChannelVisibility::Public;
                if !can_see_parent_paths {
                    return None;
                }

                visible_channel_ids.insert(channel.id);

                if let Some(ancestor) = ancestor_channel {
                    if !channel
                        .ancestors_including_self()
                        .any(|id| id == ancestor.id)
                    {
                        return None;
                    }
                }

                let mut channel = Channel::from_model(channel, role);
                channel
                    .parent_path
                    .retain(|id| visible_channel_ids.contains(&id));

                Some(channel)
            })
            .collect();

        #[derive(Copy, Clone, Debug, EnumIter, DeriveColumn)]
        enum QueryUserIdsAndChannelIds {
            ChannelId,
            UserId,
        }

        let mut channel_participants: HashMap<ChannelId, Vec<UserId>> = HashMap::default();
        {
            let mut rows = room_participant::Entity::find()
                .inner_join(room::Entity)
                .filter(room::Column::ChannelId.is_in(channels.iter().map(|c| c.id)))
                .select_only()
                .column(room::Column::ChannelId)
                .column(room_participant::Column::UserId)
                .into_values::<_, QueryUserIdsAndChannelIds>()
                .stream(&*tx)
                .await?;
            while let Some(row) = rows.next().await {
                let row: (ChannelId, UserId) = row?;
                channel_participants.entry(row.0).or_default().push(row.1)
            }
        }

        let channel_ids = channels.iter().map(|c| c.id).collect::<Vec<_>>();
        let channel_buffer_changes = self
            .unseen_channel_buffer_changes(user_id, &channel_ids, &*tx)
            .await?;

        let unseen_messages = self
            .unseen_channel_messages(user_id, &channel_ids, &*tx)
            .await?;

        Ok(ChannelsForUser {
            channels,
            channel_participants,
            unseen_buffer_changes: channel_buffer_changes,
            channel_messages: unseen_messages,
        })
    }

    async fn participants_to_notify_for_channel_change(
        &self,
        new_parent: &channel::Model,
        tx: &DatabaseTransaction,
    ) -> Result<Vec<(UserId, ChannelsForUser)>> {
        let mut results: Vec<(UserId, ChannelsForUser)> = Vec::new();

        let members = self
            .get_channel_participant_details_internal(new_parent, &*tx)
            .await?;

        for member in members.iter() {
            if !member.role.can_see_all_descendants() {
                continue;
            }
            results.push((
                member.user_id,
                self.get_user_channels(member.user_id, Some(new_parent), &*tx)
                    .await?,
            ))
        }

        let public_parents = self
            .public_ancestors_including_self(new_parent, &*tx)
            .await?;
        let public_parent = public_parents.last();

        let Some(public_parent) = public_parent else {
            return Ok(results);
        };

        // could save some time in the common case by skipping this if the
        // new channel is not public and has no public descendants.
        let public_members = if public_parent == new_parent {
            members
        } else {
            self.get_channel_participant_details_internal(public_parent, &*tx)
                .await?
        };

        for member in public_members {
            if !member.role.can_only_see_public_descendants() {
                continue;
            };
            results.push((
                member.user_id,
                self.get_user_channels(member.user_id, Some(public_parent), &*tx)
                    .await?,
            ))
        }

        Ok(results)
    }

    pub async fn set_channel_member_role(
        &self,
        channel_id: ChannelId,
        admin_id: UserId,
        for_user: UserId,
        role: ChannelRole,
    ) -> Result<SetMemberRoleResult> {
        self.transaction(|tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            self.check_user_is_channel_admin(&channel, admin_id, &*tx)
                .await?;

            let membership = channel_member::Entity::find()
                .filter(
                    channel_member::Column::ChannelId
                        .eq(channel_id)
                        .and(channel_member::Column::UserId.eq(for_user)),
                )
                .one(&*tx)
                .await?;

            let Some(membership) = membership else {
                Err(anyhow!("no such member"))?
            };

            let mut update = membership.into_active_model();
            update.role = ActiveValue::Set(role);
            let updated = channel_member::Entity::update(update).exec(&*tx).await?;

            if updated.accepted {
                Ok(SetMemberRoleResult::MembershipUpdated(
                    self.calculate_membership_updated(&channel, for_user, &*tx)
                        .await?,
                ))
            } else {
                Ok(SetMemberRoleResult::InviteUpdated(Channel::from_model(
                    channel, role,
                )))
            }
        })
        .await
    }

    pub async fn get_channel_participant_details(
        &self,
        channel_id: ChannelId,
        user_id: UserId,
    ) -> Result<Vec<proto::ChannelMember>> {
        let (role, members) = self
            .transaction(move |tx| async move {
                let channel = self.get_channel_internal(channel_id, &*tx).await?;
                let role = self
                    .check_user_is_channel_participant(&channel, user_id, &*tx)
                    .await?;
                Ok((
                    role,
                    self.get_channel_participant_details_internal(&channel, &*tx)
                        .await?,
                ))
            })
            .await?;

        if role == ChannelRole::Admin {
            Ok(members
                .into_iter()
                .map(|channel_member| channel_member.to_proto())
                .collect())
        } else {
            return Ok(members
                .into_iter()
                .filter_map(|member| {
                    if member.kind == proto::channel_member::Kind::Invitee {
                        return None;
                    }
                    Some(ChannelMember {
                        role: member.role,
                        user_id: member.user_id,
                        kind: proto::channel_member::Kind::Member,
                    })
                })
                .map(|channel_member| channel_member.to_proto())
                .collect());
        }
    }

    async fn get_channel_participant_details_internal(
        &self,
        channel: &channel::Model,
        tx: &DatabaseTransaction,
    ) -> Result<Vec<ChannelMember>> {
        #[derive(Copy, Clone, Debug, EnumIter, DeriveColumn)]
        enum QueryMemberDetails {
            UserId,
            Role,
            IsDirectMember,
            Accepted,
            Visibility,
        }

        let mut stream = channel_member::Entity::find()
            .left_join(channel::Entity)
            .filter(channel_member::Column::ChannelId.is_in(channel.ancestors_including_self()))
            .select_only()
            .column(channel_member::Column::UserId)
            .column(channel_member::Column::Role)
            .column_as(
                channel_member::Column::ChannelId.eq(channel.id),
                QueryMemberDetails::IsDirectMember,
            )
            .column(channel_member::Column::Accepted)
            .column(channel::Column::Visibility)
            .into_values::<_, QueryMemberDetails>()
            .stream(&*tx)
            .await?;

        let mut user_details: HashMap<UserId, ChannelMember> = HashMap::default();

        while let Some(user_membership) = stream.next().await {
            let (user_id, channel_role, is_direct_member, is_invite_accepted, visibility): (
                UserId,
                ChannelRole,
                bool,
                bool,
                ChannelVisibility,
            ) = user_membership?;
            let kind = match (is_direct_member, is_invite_accepted) {
                (true, true) => proto::channel_member::Kind::Member,
                (true, false) => proto::channel_member::Kind::Invitee,
                (false, true) => proto::channel_member::Kind::AncestorMember,
                (false, false) => continue,
            };

            if channel_role == ChannelRole::Guest
                && visibility != ChannelVisibility::Public
                && channel.visibility != ChannelVisibility::Public
            {
                continue;
            }

            if let Some(details_mut) = user_details.get_mut(&user_id) {
                if channel_role.should_override(details_mut.role) {
                    details_mut.role = channel_role;
                }
                if kind == Kind::Member {
                    details_mut.kind = kind;
                // the UI is going to be a bit confusing if you already have permissions
                // that are greater than or equal to the ones you're being invited to.
                } else if kind == Kind::Invitee && details_mut.kind == Kind::AncestorMember {
                    details_mut.kind = kind;
                }
            } else {
                user_details.insert(
                    user_id,
                    ChannelMember {
                        user_id,
                        kind,
                        role: channel_role,
                    },
                );
            }
        }

        Ok(user_details
            .into_iter()
            .map(|(_, details)| details)
            .collect())
    }

    pub async fn get_channel_participants(
        &self,
        channel: &channel::Model,
        tx: &DatabaseTransaction,
    ) -> Result<Vec<UserId>> {
        let participants = self
            .get_channel_participant_details_internal(channel, &*tx)
            .await?;
        Ok(participants
            .into_iter()
            .map(|member| member.user_id)
            .collect())
    }

    pub async fn check_user_is_channel_admin(
        &self,
        channel: &channel::Model,
        user_id: UserId,
        tx: &DatabaseTransaction,
    ) -> Result<ChannelRole> {
        let role = self.channel_role_for_user(channel, user_id, tx).await?;
        match role {
            Some(ChannelRole::Admin) => Ok(role.unwrap()),
            Some(ChannelRole::Member)
            | Some(ChannelRole::Banned)
            | Some(ChannelRole::Guest)
            | None => Err(anyhow!(
                "user is not a channel admin or channel does not exist"
            ))?,
        }
    }

    pub async fn check_user_is_channel_member(
        &self,
        channel: &channel::Model,
        user_id: UserId,
        tx: &DatabaseTransaction,
    ) -> Result<ChannelRole> {
        let channel_role = self.channel_role_for_user(channel, user_id, tx).await?;
        match channel_role {
            Some(ChannelRole::Admin) | Some(ChannelRole::Member) => Ok(channel_role.unwrap()),
            Some(ChannelRole::Banned) | Some(ChannelRole::Guest) | None => Err(anyhow!(
                "user is not a channel member or channel does not exist"
            ))?,
        }
    }

    pub async fn check_user_is_channel_participant(
        &self,
        channel: &channel::Model,
        user_id: UserId,
        tx: &DatabaseTransaction,
    ) -> Result<ChannelRole> {
        let role = self.channel_role_for_user(channel, user_id, tx).await?;
        match role {
            Some(ChannelRole::Admin) | Some(ChannelRole::Member) | Some(ChannelRole::Guest) => {
                Ok(role.unwrap())
            }
            Some(ChannelRole::Banned) | None => Err(anyhow!(
                "user is not a channel participant or channel does not exist"
            ))?,
        }
    }

    pub async fn pending_invite_for_channel(
        &self,
        channel: &channel::Model,
        user_id: UserId,
        tx: &DatabaseTransaction,
    ) -> Result<Option<channel_member::Model>> {
        let row = channel_member::Entity::find()
            .filter(channel_member::Column::ChannelId.is_in(channel.ancestors_including_self()))
            .filter(channel_member::Column::UserId.eq(user_id))
            .filter(channel_member::Column::Accepted.eq(false))
            .one(&*tx)
            .await?;

        Ok(row)
    }

    pub async fn public_parent_channel(
        &self,
        channel: &channel::Model,
        tx: &DatabaseTransaction,
    ) -> Result<Option<channel::Model>> {
        let mut path = self.public_ancestors_including_self(channel, &*tx).await?;
        if path.last().unwrap().id == channel.id {
            path.pop();
        }
        Ok(path.pop())
    }

    pub async fn public_ancestors_including_self(
        &self,
        channel: &channel::Model,
        tx: &DatabaseTransaction,
    ) -> Result<Vec<channel::Model>> {
        let visible_channels = channel::Entity::find()
            .filter(channel::Column::Id.is_in(channel.ancestors_including_self()))
            .filter(channel::Column::Visibility.eq(ChannelVisibility::Public))
            .order_by_asc(channel::Column::ParentPath)
            .all(&*tx)
            .await?;

        Ok(visible_channels)
    }

    pub async fn channel_role_for_user(
        &self,
        channel: &channel::Model,
        user_id: UserId,
        tx: &DatabaseTransaction,
    ) -> Result<Option<ChannelRole>> {
        #[derive(Copy, Clone, Debug, EnumIter, DeriveColumn)]
        enum QueryChannelMembership {
            ChannelId,
            Role,
            Visibility,
        }

        let mut rows = channel_member::Entity::find()
            .left_join(channel::Entity)
            .filter(
                channel_member::Column::ChannelId
                    .is_in(channel.ancestors_including_self())
                    .and(channel_member::Column::UserId.eq(user_id))
                    .and(channel_member::Column::Accepted.eq(true)),
            )
            .select_only()
            .column(channel_member::Column::ChannelId)
            .column(channel_member::Column::Role)
            .column(channel::Column::Visibility)
            .into_values::<_, QueryChannelMembership>()
            .stream(&*tx)
            .await?;

        let mut user_role: Option<ChannelRole> = None;

        let mut is_participant = false;
        let mut current_channel_visibility = None;

        // note these channels are not iterated in any particular order,
        // our current logic takes the highest permission available.
        while let Some(row) = rows.next().await {
            let (membership_channel, role, visibility): (
                ChannelId,
                ChannelRole,
                ChannelVisibility,
            ) = row?;

            match role {
                ChannelRole::Admin | ChannelRole::Member | ChannelRole::Banned => {
                    if let Some(users_role) = user_role {
                        user_role = Some(users_role.max(role));
                    } else {
                        user_role = Some(role)
                    }
                }
                ChannelRole::Guest if visibility == ChannelVisibility::Public => {
                    is_participant = true
                }
                ChannelRole::Guest => {}
            }
            if channel.id == membership_channel {
                current_channel_visibility = Some(visibility);
            }
        }
        // free up database connection
        drop(rows);

        if is_participant && user_role.is_none() {
            if current_channel_visibility.is_none() {
                current_channel_visibility = channel::Entity::find()
                    .filter(channel::Column::Id.eq(channel.id))
                    .one(&*tx)
                    .await?
                    .map(|channel| channel.visibility);
            }
            if current_channel_visibility == Some(ChannelVisibility::Public) {
                user_role = Some(ChannelRole::Guest);
            }
        }

        Ok(user_role)
    }

    // Get the descendants of the given set if channels, ordered by their
    // path.
    async fn get_channel_descendants_including_self(
        &self,
        channel_ids: impl IntoIterator<Item = ChannelId>,
        tx: &DatabaseTransaction,
    ) -> Result<Vec<channel::Model>> {
        let mut values = String::new();
        for id in channel_ids {
            if !values.is_empty() {
                values.push_str(", ");
            }
            write!(&mut values, "({})", id).unwrap();
        }

        if values.is_empty() {
            return Ok(vec![]);
        }

        let sql = format!(
            r#"
            SELECT DISTINCT
                descendant_channels.*,
                descendant_channels.parent_path || descendant_channels.id as full_path
            FROM
                channels parent_channels, channels descendant_channels
            WHERE
                descendant_channels.id IN ({values}) OR
                (
                    parent_channels.id IN ({values}) AND
                    descendant_channels.parent_path LIKE (parent_channels.parent_path || parent_channels.id || '/%')
                )
            ORDER BY
                full_path ASC
            "#
        );

        Ok(channel::Entity::find()
            .from_raw_sql(Statement::from_string(
                self.pool.get_database_backend(),
                sql,
            ))
            .all(tx)
            .await?)
    }

    /// Returns the channel with the given ID
    pub async fn get_channel(&self, channel_id: ChannelId, user_id: UserId) -> Result<Channel> {
        self.transaction(|tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            let role = self
                .check_user_is_channel_participant(&channel, user_id, &*tx)
                .await?;

            Ok(Channel::from_model(channel, role))
        })
        .await
    }

    pub async fn get_channel_internal(
        &self,
        channel_id: ChannelId,
        tx: &DatabaseTransaction,
    ) -> Result<channel::Model> {
        Ok(channel::Entity::find_by_id(channel_id)
            .one(&*tx)
            .await?
            .ok_or_else(|| anyhow!("no such channel"))?)
    }

    pub(crate) async fn get_or_create_channel_room(
        &self,
        channel_id: ChannelId,
        live_kit_room: &str,
        environment: &str,
        tx: &DatabaseTransaction,
    ) -> Result<RoomId> {
        let room = room::Entity::find()
            .filter(room::Column::ChannelId.eq(channel_id))
            .one(&*tx)
            .await?;

        let room_id = if let Some(room) = room {
            if let Some(env) = room.enviroment {
                if &env != environment {
                    Err(anyhow!("must join using the {} release", env))?;
                }
            }
            room.id
        } else {
            let result = room::Entity::insert(room::ActiveModel {
                channel_id: ActiveValue::Set(Some(channel_id)),
                live_kit_room: ActiveValue::Set(live_kit_room.to_string()),
                enviroment: ActiveValue::Set(Some(environment.to_string())),
                ..Default::default()
            })
            .exec(&*tx)
            .await?;

            result.last_insert_id
        };

        Ok(room_id)
    }

    /// Move a channel from one parent to another
    pub async fn move_channel(
        &self,
        channel_id: ChannelId,
        new_parent_id: Option<ChannelId>,
        admin_id: UserId,
    ) -> Result<Option<MoveChannelResult>> {
        self.transaction(|tx| async move {
            let channel = self.get_channel_internal(channel_id, &*tx).await?;
            self.check_user_is_channel_admin(&channel, admin_id, &*tx)
                .await?;

            let new_parent_path;
            let new_parent_channel;
            if let Some(new_parent_id) = new_parent_id {
                let new_parent = self.get_channel_internal(new_parent_id, &*tx).await?;
                self.check_user_is_channel_admin(&new_parent, admin_id, &*tx)
                    .await?;

                new_parent_path = new_parent.path();
                new_parent_channel = Some(new_parent);
            } else {
                new_parent_path = String::new();
                new_parent_channel = None;
            };

            let previous_participants = self
                .get_channel_participant_details_internal(&channel, &*tx)
                .await?;

            let old_path = format!("{}{}/", channel.parent_path, channel.id);
            let new_path = format!("{}{}/", new_parent_path, channel.id);

            if old_path == new_path {
                return Ok(None);
            }

            let mut model = channel.into_active_model();
            model.parent_path = ActiveValue::Set(new_parent_path);
            let channel = model.update(&*tx).await?;

            if new_parent_channel.is_none() {
                channel_member::ActiveModel {
                    id: ActiveValue::NotSet,
                    channel_id: ActiveValue::Set(channel_id),
                    user_id: ActiveValue::Set(admin_id),
                    accepted: ActiveValue::Set(true),
                    role: ActiveValue::Set(ChannelRole::Admin),
                }
                .insert(&*tx)
                .await?;
            }

            let descendent_ids =
                ChannelId::find_by_statement::<QueryIds>(Statement::from_sql_and_values(
                    self.pool.get_database_backend(),
                    "
                    UPDATE channels SET parent_path = REPLACE(parent_path, $1, $2)
                    WHERE parent_path LIKE $3 || '%'
                    RETURNING id
                ",
                    [old_path.clone().into(), new_path.into(), old_path.into()],
                ))
                .all(&*tx)
                .await?;

            let participants_to_update: HashMap<_, _> = self
                .participants_to_notify_for_channel_change(
                    new_parent_channel.as_ref().unwrap_or(&channel),
                    &*tx,
                )
                .await?
                .into_iter()
                .collect();

            let mut moved_channels: HashSet<ChannelId> = HashSet::default();
            for id in descendent_ids {
                moved_channels.insert(id);
            }
            moved_channels.insert(channel_id);

            let mut participants_to_remove: HashSet<UserId> = HashSet::default();
            for participant in previous_participants {
                if participant.kind == proto::channel_member::Kind::AncestorMember {
                    if !participants_to_update.contains_key(&participant.user_id) {
                        participants_to_remove.insert(participant.user_id);
                    }
                }
            }

            Ok(Some(MoveChannelResult {
                participants_to_remove,
                participants_to_update,
                moved_channels,
            }))
        })
        .await
    }
}

#[derive(Copy, Clone, Debug, EnumIter, DeriveColumn)]
enum QueryIds {
    Id,
}

#[derive(Copy, Clone, Debug, EnumIter, DeriveColumn)]
enum QueryUserIds {
    UserId,
}