mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
62 lines
2.0 KiB
TypeScript
62 lines
2.0 KiB
TypeScript
import type { AxiosError, AxiosPromise } from 'axios';
|
|
import {
|
|
notificationController,
|
|
NotificationType,
|
|
} from '../lib/components/shared-components/notification/notification';
|
|
import { handleError } from '../lib/utils/handle-error';
|
|
import { api } from './api';
|
|
import type { UserResponseDto } from '@immich/sdk';
|
|
|
|
export type ApiError = AxiosError<{ message: string }>;
|
|
|
|
export const copyToClipboard = async (secret: string) => {
|
|
try {
|
|
await navigator.clipboard.writeText(secret);
|
|
notificationController.show({ message: 'Copied to clipboard!', type: NotificationType.Info });
|
|
} catch (error) {
|
|
handleError(error, 'Cannot copy to clipboard, make sure you are accessing the page through https');
|
|
}
|
|
};
|
|
|
|
export const makeSharedLinkUrl = (externalDomain: string, key: string) => {
|
|
let url = externalDomain || window.location.origin;
|
|
if (!url.endsWith('/')) {
|
|
url += '/';
|
|
}
|
|
return `${url}share/${key}`;
|
|
};
|
|
|
|
export const oauth = {
|
|
isCallback: (location: Location) => {
|
|
const search = location.search;
|
|
return search.includes('code=') || search.includes('error=');
|
|
},
|
|
isAutoLaunchDisabled: (location: Location) => {
|
|
const values = ['autoLaunch=0', 'password=1', 'password=true'];
|
|
for (const value of values) {
|
|
if (location.search.includes(value)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
},
|
|
authorize: async (location: Location) => {
|
|
try {
|
|
const redirectUri = location.href.split('?')[0];
|
|
const { data } = await api.oauthApi.startOAuth({ oAuthConfigDto: { redirectUri } });
|
|
window.location.href = data.url;
|
|
} catch (error) {
|
|
handleError(error, 'Unable to login with OAuth');
|
|
}
|
|
},
|
|
login: (location: Location) => {
|
|
return api.oauthApi.finishOAuth({ oAuthCallbackDto: { url: location.href } });
|
|
},
|
|
link: (location: Location): AxiosPromise<UserResponseDto> => {
|
|
return api.oauthApi.linkOAuthAccount({ oAuthCallbackDto: { url: location.href } });
|
|
},
|
|
unlink: () => {
|
|
return api.oauthApi.unlinkOAuthAccount();
|
|
},
|
|
};
|