/api/administrator/accounts (GET)
Account information like email addresses is generated with faker-js it is not real user information.
await global.api.administrator.Accounts.get(req)Returns array
[
{
"accountid": "acct_8fc379bd319040b2",
"object": "account",
"appid": "tests_1656038566",
"profileid": "prof_22c069fd0fcc8443",
"sessionKeyNumber": 1,
"lastSignedInAt": "2022-06-24T02:42:46.000Z",
"createdAt": "2022-06-24T02:42:46.510Z",
"updatedAt": "2022-06-24T02:42:46.527Z"
},
{
"accountid": "acct_8c2509e901738c4a",
"object": "account",
"appid": "tests_1656038566",
"profileid": "prof_13d20d38415fd7f8",
"sessionKeyNumber": 1,
"lastSignedInAt": "2022-06-24T02:42:46.000Z",
"createdAt": "2022-06-24T02:42:46.475Z",
"updatedAt": "2022-06-24T02:42:46.494Z"
},
{
"accountid": "acct_6fe454fbf3d22271",
"object": "account",
"appid": "tests_1656038566",
"profileid": "prof_a0c5cb070185790c",
"sessionKeyNumber": 1,
"lastSignedInAt": "2022-06-24T02:42:46.000Z",
"createdAt": "2022-06-24T02:42:46.440Z",
"updatedAt": "2022-06-24T02:42:46.459Z"
}
]
Receives
API routes may receive parameters from the URL and POST supporting simple and multipart:
Field | Value | Required | Type |
---|---|---|---|
all | boolean | optional | URL |
limit | integer | optional | URL |
offset | integer | optional | URL |
NodeJS source (view on github)
const dashboard = require('../../../../index.js')
module.exports = {
/**
* Returns a list of users bound to profile information
*/
get: async (req) => {
req.query = req.query || {}
let accountids
if (req.query.all) {
accountids = await dashboard.Storage.Account.findAll({
where: {
appid: req.appid || global.appid
},
attributes: ['accountid'],
order: [
['createdAt', 'DESC']
]
})
} else {
const offset = req.query.offset ? parseInt(req.query.offset, 10) : 0
const limit = req.query.limit ? parseInt(req.query.limit, 10) : global.pageSize
accountids = await dashboard.Storage.Account.findAll({
where: {
appid: req.appid || global.appid
},
attributes: ['accountid'],
order: [
['createdAt', 'DESC']
],
offset,
limit
})
}
if (!accountids || !accountids.length) {
return null
}
const accounts = []
for (const accountData of accountids) {
req.query.accountid = accountData.dataValues.accountid
const account = await global.api.administrator.Account.get(req)
accounts.push(account)
}
return accounts
}
}
Test source (view on github)
/* eslint-env mocha */
const assert = require('assert')
const TestHelper = require('../../../../test-helper.js')
describe('/api/administrator/accounts', function () {
const cachedResponses = {}
const cachedAccounts = []
before(async () => {
await TestHelper.setupBeforeEach()
const administrator = await TestHelper.createUser()
cachedAccounts.push(administrator.account.accountid)
for (let i = 0, len = global.pageSize + 1; i < len; i++) {
const user = await TestHelper.createUser()
cachedAccounts.unshift(user.account.accountid)
}
const req1 = TestHelper.createRequest('/api/administrator/accounts?offset=1')
req1.account = administrator.account
req1.session = administrator.session
cachedResponses.offset = await req1.get()
const req2 = TestHelper.createRequest('/api/administrator/accounts?limit=1')
req2.account = administrator.account
req2.session = administrator.session
cachedResponses.limit = await req2.get()
const req3 = TestHelper.createRequest('/api/administrator/accounts?all=true')
req3.account = administrator.account
req3.session = administrator.session
cachedResponses.all = await req3.get()
const req4 = TestHelper.createRequest('/api/administrator/accounts')
req4.account = administrator.account
req4.session = administrator.session
req4.filename = __filename
req4.saveResponse = true
cachedResponses.returns = await req4.get()
global.pageSize = 3
cachedResponses.pageSize = await req4.get()
})
describe('receives', () => {
it('optional querystring offset (integer)', async () => {
const offset = 1
const accountsNow = cachedResponses.offset
for (let i = 0, len = global.pageSize; i < len; i++) {
assert.strictEqual(accountsNow[i].accountid, cachedAccounts[offset + i])
}
})
it('optional querystring limit (integer)', async () => {
const limit = 1
const accountsNow = cachedResponses.limit
assert.strictEqual(accountsNow.length, limit)
})
it('optional querystring all (boolean)', async () => {
const accountsNow = cachedResponses.all
assert.strictEqual(accountsNow.length, cachedAccounts.length)
})
})
describe('returns', () => {
it('array', async () => {
const accountsNow = cachedResponses.returns
assert.strictEqual(accountsNow.length, global.pageSize)
})
})
describe('redacts', () => {
it('usernameHash', async () => {
const accounts = cachedResponses.returns
assert.strictEqual(accounts[0].usernameHash, undefined)
})
it('passwordHash', async () => {
const accounts = cachedResponses.returns
assert.strictEqual(accounts[0].passwordHash, undefined)
})
it('sessionKey', async () => {
const accounts = cachedResponses.returns
assert.strictEqual(accounts[0].sessionKey, undefined)
})
})
describe('configuration', () => {
it('environment PAGE_SIZE', async () => {
global.pageSize = 3
const accountsNow = cachedResponses.pageSize
assert.strictEqual(accountsNow.length, global.pageSize)
})
})
})