You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
30 lines
874 B
TypeScript
30 lines
874 B
TypeScript
![]() |
import Setting from '../../models/Setting';
|
||
|
import shim from '../../shim';
|
||
|
import { authenticateWithCode } from '../../SyncTargetJoplinServerSAML';
|
||
|
import prefixWithHttps from '../../utils/prefixWithHttps';
|
||
|
import SsoScreenShared from './SsoScreenShared';
|
||
|
|
||
|
export default class SamlShared implements SsoScreenShared {
|
||
|
public openLoginPage() {
|
||
|
shim.openUrl(`${prefixWithHttps(Setting.value('sync.11.path'))}/login/sso-saml-app`);
|
||
|
return Promise.resolve();
|
||
|
}
|
||
|
|
||
|
public processLoginCode(code: string) {
|
||
|
if (this.isLoginCodeValid(code)) {
|
||
|
return authenticateWithCode(this.cleanCode(code));
|
||
|
} else {
|
||
|
return Promise.resolve(false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public isLoginCodeValid(code: string) {
|
||
|
const cleanedCode = this.cleanCode(code);
|
||
|
return !isNaN(+cleanedCode) && cleanedCode.length === 9;
|
||
|
}
|
||
|
|
||
|
private cleanCode(code: string) {
|
||
|
return code.replace(/\s|-/gi, '');
|
||
|
}
|
||
|
}
|