61 lines
2.1 KiB
TypeScript
61 lines
2.1 KiB
TypeScript
/**
|
|
* OAuth: create and revoke tokens.
|
|
* Tokens can be used by users and apps.
|
|
* https://docs.joinmastodon.org/methods/apps/oauth/
|
|
* @module pl-fe/actions/oauth
|
|
* @see module:pl-fe/actions/auth
|
|
*/
|
|
|
|
import { PlApiClient, type GetTokenParams, type RevokeTokenParams } from 'pl-api';
|
|
|
|
import * as BuildConfig from 'pl-fe/build-config';
|
|
import { getBaseURL } from 'pl-fe/utils/state';
|
|
|
|
import type { AppDispatch, RootState } from 'pl-fe/store';
|
|
|
|
const OAUTH_TOKEN_CREATE_REQUEST = 'OAUTH_TOKEN_CREATE_REQUEST' as const;
|
|
const OAUTH_TOKEN_CREATE_SUCCESS = 'OAUTH_TOKEN_CREATE_SUCCESS' as const;
|
|
const OAUTH_TOKEN_CREATE_FAIL = 'OAUTH_TOKEN_CREATE_FAIL' as const;
|
|
|
|
const OAUTH_TOKEN_REVOKE_REQUEST = 'OAUTH_TOKEN_REVOKE_REQUEST' as const;
|
|
const OAUTH_TOKEN_REVOKE_SUCCESS = 'OAUTH_TOKEN_REVOKE_SUCCESS' as const;
|
|
const OAUTH_TOKEN_REVOKE_FAIL = 'OAUTH_TOKEN_REVOKE_FAIL' as const;
|
|
|
|
const obtainOAuthToken = (params: GetTokenParams, baseURL?: string) =>
|
|
(dispatch: AppDispatch) => {
|
|
dispatch({ type: OAUTH_TOKEN_CREATE_REQUEST, params });
|
|
const client = new PlApiClient(baseURL || BuildConfig.BACKEND_URL || '');
|
|
|
|
return client.oauth.getToken(params).then((token) => {
|
|
dispatch({ type: OAUTH_TOKEN_CREATE_SUCCESS, params, token });
|
|
return token;
|
|
}).catch(error => {
|
|
dispatch({ type: OAUTH_TOKEN_CREATE_FAIL, params, error, skipAlert: true });
|
|
throw error;
|
|
});
|
|
};
|
|
|
|
const revokeOAuthToken = (params: RevokeTokenParams) =>
|
|
(dispatch: AppDispatch, getState: () => RootState) => {
|
|
dispatch({ type: OAUTH_TOKEN_REVOKE_REQUEST, params });
|
|
const baseURL = getBaseURL(getState());
|
|
const client = new PlApiClient(baseURL || '');
|
|
return client.oauth.revokeToken(params).then((data) => {
|
|
dispatch({ type: OAUTH_TOKEN_REVOKE_SUCCESS, params, data });
|
|
return data;
|
|
}).catch(error => {
|
|
dispatch({ type: OAUTH_TOKEN_REVOKE_FAIL, params, error });
|
|
throw error;
|
|
});
|
|
};
|
|
|
|
export {
|
|
OAUTH_TOKEN_CREATE_REQUEST,
|
|
OAUTH_TOKEN_CREATE_SUCCESS,
|
|
OAUTH_TOKEN_CREATE_FAIL,
|
|
OAUTH_TOKEN_REVOKE_REQUEST,
|
|
OAUTH_TOKEN_REVOKE_SUCCESS,
|
|
OAUTH_TOKEN_REVOKE_FAIL,
|
|
obtainOAuthToken,
|
|
revokeOAuthToken,
|
|
};
|