You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
631 B
JavaScript
26 lines
631 B
JavaScript
const pg = require('../pg')
|
|
const joinjs = require('join-js').default;
|
|
const debug = require('debug')('sos:db:session')
|
|
const mappings = require('../mappings')
|
|
|
|
const session = module.exports = {}
|
|
|
|
session.create = async (user_uuid, ip_address, user_agent, referer, origin_link_uuid) => {
|
|
const query = {
|
|
text: 'select * from login_user_session($1, $2, $3, $4, $5, $6)',
|
|
values: [
|
|
user_uuid,
|
|
'2 hours',
|
|
ip_address,
|
|
user_agent,
|
|
referer,
|
|
origin_link_uuid
|
|
]
|
|
}
|
|
|
|
debug(query);
|
|
|
|
const {rows} = await pg.query(query)
|
|
return joinjs.map(rows, mappings, 'sessionMap', 'session_');
|
|
}
|