mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-11 05:32:40 +01:00
1c44d1d0f9
* added /config endpoint, use fewer globals * fixed integration tests
27 lines
687 B
JavaScript
27 lines
687 B
JavaScript
/* global Android */
|
|
import User from '../app/user';
|
|
import { deriveFileListKey } from '../app/fxa';
|
|
|
|
export default class AndroidUser extends User {
|
|
constructor(storage, limits) {
|
|
super(storage, limits);
|
|
}
|
|
|
|
async login() {
|
|
Android.beginOAuthFlow();
|
|
}
|
|
|
|
async finishLogin(accountInfo) {
|
|
const jwks = JSON.parse(accountInfo.keys);
|
|
const ikm = jwks['https://identity.mozilla.com/apps/send'].k;
|
|
const profile = {
|
|
displayName: accountInfo.displayName,
|
|
email: accountInfo.email,
|
|
avatar: accountInfo.avatar,
|
|
access_token: accountInfo.accessToken
|
|
};
|
|
profile.fileListKey = await deriveFileListKey(ikm);
|
|
this.info = profile;
|
|
}
|
|
}
|