mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
826364e803
This is part of a rewrite for Dimension to better support integrations. Only the bare minimum scalar APIs are implemented at this point - dimension is non-functional.
21 lines
545 B
TypeScript
21 lines
545 B
TypeScript
import * as Promise from "bluebird";
|
|
import { doFederatedApiCall } from "./helpers";
|
|
import { OpenId } from "../models/OpenId";
|
|
|
|
export class MatrixOpenIdClient {
|
|
|
|
constructor(private openId: OpenId) {
|
|
}
|
|
|
|
public getUserId(): Promise<string> {
|
|
return doFederatedApiCall(
|
|
"GET",
|
|
this.openId.matrix_server_name,
|
|
"/_matrix/federation/v1/openid/userinfo",
|
|
{access_token: this.openId.access_token}
|
|
).then(response => {
|
|
return response['sub'];
|
|
});
|
|
}
|
|
}
|