123456789101112131415161718192021222324252627282930 |
- /* 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();
- }
- startAuthFlow() {
- return Promise.resolve();
- }
- 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;
- }
- }
|