aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/fixtures/peertube-plugin-test-id-pass-auth-one/main.js
blob: 9fc12a3e33c59bc7305ee7d720378738cf1a598f (plain) (blame)
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
async function register ({
  registerIdAndPassAuth,
  peertubeHelpers
}) {
  registerIdAndPassAuth({
    authName: 'spyro-auth',

    onLogout: () => {
      peertubeHelpers.logger.info('On logout for auth 1 - 1')
    },

    getWeight: () => 15,

    login (body) {
      if (body.id === 'spyro' && body.password === 'spyro password') {
        return Promise.resolve({
          username: 'spyro',
          email: 'spyro@example.com',
          role: 2,
          displayName: 'Spyro the Dragon'
        })
      }

      return null
    }
  })

  registerIdAndPassAuth({
    authName: 'crash-auth',

    onLogout: () => {
      peertubeHelpers.logger.info('On logout for auth 1 - 2')
    },

    getWeight: () => 50,

    login (body) {
      if (body.id === 'crash' && body.password === 'crash password') {
        return Promise.resolve({
          username: 'crash',
          email: 'crash@example.com',
          role: 1,
          displayName: 'Crash Bandicoot'
        })
      }

      return null
    }
  })
}

async function unregister () {
  return
}

module.exports = {
  register,
  unregister
}

// ###########################################################################