mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-21 06:51:19 +08:00
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
import { Context } from '@nuxt/types';
|
|
import { UserPermissions } from 'hangar-api';
|
|
import { AuthState } from '~/store/auth';
|
|
|
|
export default ({ store, params, $api, $auth }: Context) => {
|
|
if (params.author && params.slug) {
|
|
if ($auth.isLoggedIn()) {
|
|
return $api
|
|
.request<UserPermissions>('permissions', true, 'get', {
|
|
author: params.author,
|
|
slug: params.slug,
|
|
})
|
|
.then((userPermissions) => {
|
|
store.commit('auth/SET_ROUTE_PERMISSIONS', userPermissions.permissionBinString);
|
|
})
|
|
.catch(() => {
|
|
store.commit('auth/SET_ROUTE_PERMISSIONS', null);
|
|
});
|
|
}
|
|
} else if (params.user) {
|
|
if ($auth.isLoggedIn()) {
|
|
return $api
|
|
.request<UserPermissions>('permissions', true, 'get', {
|
|
organization: params.user,
|
|
})
|
|
.then((userPermissions) => {
|
|
store.commit('auth/SET_ROUTE_PERMISSIONS', userPermissions.permissionBinString);
|
|
})
|
|
.catch(() => {
|
|
store.commit('auth/SET_ROUTE_PERMISSIONS', null);
|
|
});
|
|
}
|
|
} else if ($auth.isLoggedIn()) {
|
|
// Catch-all (just use global permissions)
|
|
store.commit('auth/SET_ROUTE_PERMISSIONS', (store.state.auth as AuthState).user!.headerData.globalPermission);
|
|
return;
|
|
}
|
|
store.commit('auth/SET_ROUTE_PERMISSIONS', null);
|
|
};
|