2017-11-17 14:22:46 +00:00
|
|
|
/**
|
|
|
|
* @flow
|
|
|
|
* PhoneAuthProvider representation wrapper
|
|
|
|
*/
|
2017-11-23 17:29:40 +00:00
|
|
|
import type { AuthCredential } from '../../../types';
|
|
|
|
|
2017-09-21 16:42:09 +00:00
|
|
|
const providerId = 'phone';
|
|
|
|
|
|
|
|
export default class PhoneAuthProvider {
|
2017-09-24 12:50:00 +00:00
|
|
|
constructor() {
|
2017-09-24 15:35:15 +00:00
|
|
|
throw new Error('`new PhoneAuthProvider()` is not supported on the native Firebase SDKs.');
|
2017-09-24 12:50:00 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 14:22:46 +00:00
|
|
|
static get PROVIDER_ID(): string {
|
2017-09-21 16:42:09 +00:00
|
|
|
return providerId;
|
|
|
|
}
|
|
|
|
|
2017-11-17 14:22:46 +00:00
|
|
|
static credential(verificationId: string, code: string): AuthCredential {
|
2017-09-21 16:42:09 +00:00
|
|
|
return {
|
|
|
|
token: verificationId,
|
|
|
|
secret: code,
|
|
|
|
providerId,
|
|
|
|
};
|
|
|
|
}
|
2017-09-24 12:50:00 +00:00
|
|
|
}
|