aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/fixtures/peertube-plugin-test-id-pass-auth-two/main.js
blob: fad5abf60e4831f00975a230626f06fbd081d513 (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
62
63
64
65
async function register ({
  registerIdAndPassAuth,
  peertubeHelpers
}) {
  registerIdAndPassAuth({
    authName: 'laguna-auth',

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

    getWeight: () => 30,

    hookTokenValidity: (options) => {
      if (options.type === 'refresh') {
        return { valid: false }
      }

      if (options.type === 'access') {
        const token = options.token
        const now = new Date()
        now.setTime(now.getTime() - 5000)

        const createdAt = new Date(token.createdAt)

        return { valid: createdAt.getTime() >= now.getTime() }
      }

      return { valid: true }
    },

    login (body) {
      if (body.id === 'laguna' && body.password === 'laguna password') {
        return Promise.resolve({
          username: 'laguna',
          email: 'laguna@example.com',
          displayName: 'Laguna Loire',
          adminFlags: 1,
          videoQuota: 42000,
          videoQuotaDaily: 42100,

          // Always use new value except for videoQuotaDaily field
          userUpdater: ({ fieldName, currentValue, newValue }) => {
            if (fieldName === 'videoQuotaDaily') return currentValue

            return newValue
          }
        })
      }

      return null
    }
  })
}

async function unregister () {
  return
}

module.exports = {
  register,
  unregister
}

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