-
Notifications
You must be signed in to change notification settings - Fork 918
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add App Check token to FirebaseServerApp #8651
Changes from all commits
25f264f
b971b89
7c8ec93
de89ecd
e632eeb
1e511b5
ad17dab
33e4889
02708d3
c1a1322
34372c4
a5075a2
a218674
e6b6625
9da69bc
9a1299b
b3a1c4f
037041f
d6e1917
4fc151f
302e1dc
61ec38d
0526b87
c444e66
3352b7f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
'@firebase/app': minor | ||
'firebase': minor | ||
'@firebase/data-connect': patch | ||
'@firebase/firestore': patch | ||
'@firebase/functions': patch | ||
'@firebase/database': patch | ||
'@firebase/vertexai': patch | ||
'@firebase/storage': patch | ||
'@firebase/auth': patch | ||
--- | ||
|
||
`FirebaseServerApp` can now be initalized with an App Check token instead of invoking the App Check | ||
`getToken` method. This should unblock the use of App Check enforced products in SSR environments | ||
where the App Check SDK cannot be initialized. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
import { FirebaseApp, _isFirebaseServerApp } from '@firebase/app'; | ||
import { | ||
AppCheckInternalComponentName, | ||
AppCheckTokenListener, | ||
|
@@ -29,10 +30,14 @@ import { Provider } from '@firebase/component'; | |
*/ | ||
export class AppCheckTokenProvider { | ||
private appCheck?: FirebaseAppCheckInternal; | ||
private serverAppAppCheckToken?: string; | ||
constructor( | ||
private appName_: string, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This value was never used. |
||
app: FirebaseApp, | ||
private appCheckProvider?: Provider<AppCheckInternalComponentName> | ||
) { | ||
if (_isFirebaseServerApp(app) && app.settings.appCheckToken) { | ||
this.serverAppAppCheckToken = app.settings.appCheckToken; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. During the initialization of the Data Connect-specific |
||
this.appCheck = appCheckProvider?.getImmediate({ optional: true }); | ||
if (!this.appCheck) { | ||
void appCheckProvider | ||
|
@@ -42,7 +47,11 @@ export class AppCheckTokenProvider { | |
} | ||
} | ||
|
||
getToken(forceRefresh?: boolean): Promise<AppCheckTokenResult> { | ||
getToken(): Promise<AppCheckTokenResult> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. forceRefresh was never used, so I've removed it for now. |
||
if (this.serverAppAppCheckToken) { | ||
return Promise.resolve({ token: this.serverAppAppCheckToken }); | ||
} | ||
|
||
if (!this.appCheck) { | ||
return new Promise<AppCheckTokenResult>((resolve, reject) => { | ||
// Support delayed initialization of FirebaseAppCheck. This allows our | ||
|
@@ -51,14 +60,14 @@ export class AppCheckTokenProvider { | |
// becomes available before the timoeout below expires. | ||
setTimeout(() => { | ||
if (this.appCheck) { | ||
this.getToken(forceRefresh).then(resolve, reject); | ||
this.getToken().then(resolve, reject); | ||
} else { | ||
resolve(null); | ||
} | ||
}, 0); | ||
}); | ||
} | ||
return this.appCheck.getToken(forceRefresh); | ||
return this.appCheck.getToken(); | ||
} | ||
|
||
addTokenChangeListener(listener: AppCheckTokenListener): void { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid tokens are now handled by a new flow, which we test in
app/src/FirebaseServerApp.test.ts
, so I'm removing this test here.