File size: 1,922 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
const { db } = require('shared/db');
import type { DBUserSettings } from 'shared/types';

export const createNewUsersSettings = (
  userId: string
): Promise<DBUserSettings> => {
  return db
    .table('usersSettings')
    .insert(
      {
        userId,
        notifications: {
          types: {
            newMessageInThreads: {
              email: true,
            },
            newMention: {
              email: true,
            },
            newDirectMessage: {
              email: true,
            },
            newThreadCreated: {
              email: true,
            },
            dailyDigest: {
              email: true,
            },
            weeklyDigest: {
              email: true,
            },
          },
        },
      },
      { returnChanges: 'always' }
    )
    .run()
    .then(res => res.changes[0].new_val);
};

export const getUsersSettings = (userId: string): Promise<Object> => {
  return db
    .table('usersSettings')
    .getAll(userId, { index: 'userId' })
    .run()
    .then(results => {
      if (results && results.length > 0) {
        // if the user already has a relationship with the thread we don't need to do anything, return
        return results[0];
      } else {
        return null;
      }
    });
};

export const disableAllUsersEmailSettings = (userId: string) => {
  return db
    .table('usersSettings')
    .getAll(userId, { index: 'userId' })
    .update({
      notifications: {
        types: {
          dailyDigest: {
            email: false,
          },
          newDirectMessage: {
            email: false,
          },
          newMention: {
            email: false,
          },
          newMessageInThreads: {
            email: false,
          },
          newThreadCreated: {
            email: false,
          },
          weeklyDigest: {
            email: false,
          },
        },
      },
    })
    .run();
};