mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9dab40c2ce
In order to simplify the deployment of Authelia for testing, LDAP is now optional made optional thanks to users database stored in a file. One can update the file manually even while Authelia is running. With this feature the minimal configuration requires only two components: Authelia and nginx. The users database is obviously made for development environments only as it prevents Authelia to be scaled to more than one instance. Note: Configuration has been updated. Key `ldap` has been nested in `authentication_backend`.
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import Bluebird = require("bluebird");
|
|
import Fs = require("fs");
|
|
import Request = require("request-promise");
|
|
|
|
export function GetLinkFromFile(): Bluebird<string> {
|
|
return Bluebird.promisify(Fs.readFile)("/tmp/authelia/notification.txt")
|
|
.then(function (data: any) {
|
|
const regexp = new RegExp(/Link: (.+)/);
|
|
const match = regexp.exec(data);
|
|
const link = match[1];
|
|
return Bluebird.resolve(link);
|
|
});
|
|
};
|
|
|
|
export function GetLinkFromEmail(): Bluebird<string> {
|
|
return Request({
|
|
method: "GET",
|
|
uri: "http://localhost:8085/messages",
|
|
json: true
|
|
})
|
|
.then(function (data: any) {
|
|
const messageId = data[data.length - 1].id;
|
|
return Request({
|
|
method: "GET",
|
|
uri: `http://localhost:8085/messages/${messageId}.html`
|
|
});
|
|
})
|
|
.then(function (data: any) {
|
|
const regexp = new RegExp(/<a href="(.+)" class="button">Continue<\/a>/);
|
|
const match = regexp.exec(data);
|
|
const link = match[1];
|
|
return Bluebird.resolve(link);
|
|
});
|
|
}; |