bigbuffet-rw/app/soapbox/reducers/security.tsx

67 lines
1.7 KiB
TypeScript
Raw Normal View History

import { Map as ImmutableMap, List as ImmutableList, Record as ImmutableRecord, fromJS } from 'immutable';
import { AnyAction } from 'redux';
2022-01-07 12:26:19 -08:00
import {
MFA_FETCH_SUCCESS,
MFA_CONFIRM_SUCCESS,
MFA_DISABLE_SUCCESS,
} from '../actions/mfa';
import {
FETCH_TOKENS_SUCCESS,
REVOKE_TOKEN_SUCCESS,
} from '../actions/security';
const TokenRecord = ImmutableRecord({
id: 0,
app_name: '',
valid_until: '',
});
const ReducerRecord = ImmutableRecord({
tokens: ImmutableList<Token>(),
2022-01-07 12:26:19 -08:00
mfa: ImmutableMap({
settings: ImmutableMap({
totp: false,
}),
}),
});
type State = ReturnType<typeof ReducerRecord>;
export type Token = ReturnType<typeof TokenRecord>;
const deleteToken = (state: State, tokenId: number) => {
2021-08-03 12:29:36 -07:00
return state.update('tokens', tokens => {
return tokens.filterNot(token => token.id === tokenId);
2021-08-03 12:29:36 -07:00
});
};
const importMfa = (state: State, data: any) => {
2022-01-07 12:26:19 -08:00
return state.set('mfa', data);
};
const enableMfa = (state: State, method: string) => {
2022-01-07 12:26:19 -08:00
return state.setIn(['mfa', 'settings', method], true);
};
const disableMfa = (state: State, method: string) => {
2022-01-07 12:26:19 -08:00
return state.setIn(['mfa', 'settings', method], false);
};
export default function security(state = ReducerRecord(), action: AnyAction) {
switch (action.type) {
2022-05-11 14:06:35 -07:00
case FETCH_TOKENS_SUCCESS:
return state.set('tokens', ImmutableList(action.tokens.map(TokenRecord)));
2022-05-11 14:06:35 -07:00
case REVOKE_TOKEN_SUCCESS:
return deleteToken(state, action.id);
case MFA_FETCH_SUCCESS:
return importMfa(state, fromJS(action.data));
case MFA_CONFIRM_SUCCESS:
return enableMfa(state, action.method);
case MFA_DISABLE_SUCCESS:
return disableMfa(state, action.method);
default:
return state;
}
2021-08-03 12:22:51 -07:00
}