mirror of
https://github.com/zadam/trilium.git
synced 2024-11-12 02:37:39 +08:00
31 lines
No EOL
712 B
JavaScript
31 lines
No EOL
712 B
JavaScript
"use strict";
|
|
|
|
const protected_session = require('./protected_session');
|
|
|
|
module.exports = function(req) {
|
|
function isProtectedSessionAvailable() {
|
|
return protected_session.isProtectedSessionAvailable(req);
|
|
}
|
|
|
|
function getDataKey() {
|
|
if (!isProtectedSessionAvailable()) {
|
|
throw new Error("Protected session is not available");
|
|
}
|
|
|
|
return protected_session.getDataKey(req);
|
|
}
|
|
|
|
function getDataKeyOrNull() {
|
|
if (!isProtectedSessionAvailable()) {
|
|
return null;
|
|
}
|
|
|
|
return protected_session.getDataKey(req);
|
|
}
|
|
|
|
return {
|
|
isProtectedSessionAvailable,
|
|
getDataKey,
|
|
getDataKeyOrNull
|
|
};
|
|
}; |