* refactor: switch ExternalAPI to Fetch API * fix: add missing auth token in Plex request * fix: send proper URL params * ci: try to fix format checker * ci: ci: try to fix format checker * ci: try to fix format checker * refactor: make tautulli use the ExternalAPI class * refactor: add rate limit to fetch api * refactor: add rate limit to fetch api * refactor: switch server from axios to fetch api * refactor: switch frontend from axios to fetch api * fix: switch from URL objects to strings * fix: use the right search params for ExternalAPI * fix: better log for ExternalAPI errors * feat: add retry to external API requests * fix: try to fix network errors with IPv6 * fix: imageProxy rate limit * revert: remove retry to external API requests * feat: set IPv4 first as an option * fix(jellyfinapi): add missing argument in JellyfinAPI constructor * refactor: clean the rate limit utility
154 lines
4.7 KiB
TypeScript
154 lines
4.7 KiB
TypeScript
import Alert from '@app/components/Common/Alert';
|
|
import Button from '@app/components/Common/Button';
|
|
import LoadingSpinner from '@app/components/Common/LoadingSpinner';
|
|
import PageTitle from '@app/components/Common/PageTitle';
|
|
import PermissionEdit from '@app/components/PermissionEdit';
|
|
import { useUser } from '@app/hooks/useUser';
|
|
import globalMessages from '@app/i18n/globalMessages';
|
|
import ErrorPage from '@app/pages/_error';
|
|
import defineMessages from '@app/utils/defineMessages';
|
|
import { ArrowDownOnSquareIcon } from '@heroicons/react/24/outline';
|
|
import { Form, Formik } from 'formik';
|
|
import { useRouter } from 'next/router';
|
|
import { useIntl } from 'react-intl';
|
|
import { useToasts } from 'react-toast-notifications';
|
|
import useSWR from 'swr';
|
|
|
|
const messages = defineMessages(
|
|
'components.UserProfile.UserSettings.UserPermissions',
|
|
{
|
|
toastSettingsSuccess: 'Permissions saved successfully!',
|
|
toastSettingsFailure: 'Something went wrong while saving settings.',
|
|
permissions: 'Permissions',
|
|
unauthorizedDescription: 'You cannot modify your own permissions.',
|
|
}
|
|
);
|
|
|
|
const UserPermissions = () => {
|
|
const intl = useIntl();
|
|
const { addToast } = useToasts();
|
|
const router = useRouter();
|
|
const { user: currentUser } = useUser();
|
|
const { user, revalidate: revalidateUser } = useUser({
|
|
id: Number(router.query.userId),
|
|
});
|
|
const {
|
|
data,
|
|
error,
|
|
mutate: revalidate,
|
|
} = useSWR<{ permissions?: number }>(
|
|
user ? `/api/v1/user/${user?.id}/settings/permissions` : null
|
|
);
|
|
|
|
if (!data && !error) {
|
|
return <LoadingSpinner />;
|
|
}
|
|
|
|
if (!data) {
|
|
return <ErrorPage statusCode={500} />;
|
|
}
|
|
|
|
if (currentUser?.id !== 1 && currentUser?.id === user?.id) {
|
|
return (
|
|
<>
|
|
<div className="mb-6">
|
|
<h3 className="heading">
|
|
{intl.formatMessage(messages.permissions)}
|
|
</h3>
|
|
</div>
|
|
<Alert
|
|
title={intl.formatMessage(messages.unauthorizedDescription)}
|
|
type="error"
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<PageTitle
|
|
title={[
|
|
intl.formatMessage(messages.permissions),
|
|
intl.formatMessage(globalMessages.usersettings),
|
|
user?.displayName,
|
|
]}
|
|
/>
|
|
<div className="mb-6">
|
|
<h3 className="heading">{intl.formatMessage(messages.permissions)}</h3>
|
|
</div>
|
|
<Formik
|
|
initialValues={{
|
|
currentPermissions: data?.permissions,
|
|
}}
|
|
enableReinitialize
|
|
onSubmit={async (values) => {
|
|
try {
|
|
const res = await fetch(
|
|
`/api/v1/user/${user?.id}/settings/permissions`,
|
|
{
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
permissions: values.currentPermissions ?? 0,
|
|
}),
|
|
}
|
|
);
|
|
if (!res.ok) throw new Error();
|
|
addToast(intl.formatMessage(messages.toastSettingsSuccess), {
|
|
autoDismiss: true,
|
|
appearance: 'success',
|
|
});
|
|
} catch (e) {
|
|
addToast(intl.formatMessage(messages.toastSettingsFailure), {
|
|
autoDismiss: true,
|
|
appearance: 'error',
|
|
});
|
|
} finally {
|
|
revalidate();
|
|
revalidateUser();
|
|
}
|
|
}}
|
|
>
|
|
{({ isSubmitting, setFieldValue, values }) => {
|
|
return (
|
|
<Form className="section">
|
|
<div className="max-w-3xl">
|
|
<PermissionEdit
|
|
actingUser={currentUser}
|
|
currentUser={user}
|
|
currentPermission={values.currentPermissions ?? 0}
|
|
onUpdate={(newPermission) =>
|
|
setFieldValue('currentPermissions', newPermission)
|
|
}
|
|
/>
|
|
</div>
|
|
<div className="actions">
|
|
<div className="flex justify-end">
|
|
<span className="ml-3 inline-flex rounded-md shadow-sm">
|
|
<Button
|
|
buttonType="primary"
|
|
type="submit"
|
|
disabled={isSubmitting}
|
|
>
|
|
<ArrowDownOnSquareIcon />
|
|
<span>
|
|
{isSubmitting
|
|
? intl.formatMessage(globalMessages.saving)
|
|
: intl.formatMessage(globalMessages.save)}
|
|
</span>
|
|
</Button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</Form>
|
|
);
|
|
}}
|
|
</Formik>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default UserPermissions;
|