This commit is contained in:
Fredrik Burmester
2024-09-28 18:32:08 +02:00
parent 73c43d31ee
commit b3a938b53a
4 changed files with 73 additions and 6 deletions

View File

@@ -19,6 +19,7 @@ import React, {
useCallback,
useContext,
useEffect,
useMemo,
useState,
} from "react";
import { toast } from "sonner-native";
@@ -42,6 +43,10 @@ function useDownloadProvider() {
const [process, setProcess] = useState<ProcessItem | null>(null);
const [settings] = useSettings();
const authHeader = useMemo(() => {
return `Bearer ${settings?.optimizedVersionsAuthHeader}`;
}, [settings]);
const {
data: downloadedFiles,
isLoading,
@@ -105,8 +110,12 @@ function useDownloadProvider() {
id: process.id,
url: settings?.optimizedVersionsServerUrl + "download/" + process.id,
destination: `${directories.documents}/${process?.item.Id}.mp4`,
headers: {
Authorization: authHeader,
},
})
.begin(() => {
toast.info(`Download started for ${process.item.Name}`);
updateProcess((prev) => {
if (!prev) return null;
return {
@@ -167,7 +176,8 @@ function useDownloadProvider() {
if (process.state === "optimizing") {
const job = await checkJobStatus(
process.id,
settings?.optimizedVersionsServerUrl
settings?.optimizedVersionsServerUrl,
authHeader
);
if (!job) {
@@ -232,6 +242,7 @@ function useDownloadProvider() {
{
headers: {
"Content-Type": "application/json",
Authorization: authHeader,
},
}
);
@@ -249,7 +260,7 @@ function useDownloadProvider() {
state: "optimizing",
});
toast.success(`Optimization job started for ${item.Name}`);
toast.success(`Optimization started for ${item.Name}`);
} catch (error) {
console.error("Error in startBackgroundDownload:", error);
toast.error(`Failed to start download for ${item.Name}`);
@@ -428,13 +439,17 @@ export function useDownload() {
const checkJobStatus = async (
id: string,
baseUrl: string
baseUrl: string,
authHeader?: string | null
): Promise<{
progress: number;
status: "running" | "completed" | "failed" | "cancelled";
}> => {
const statusResponse = await axios.get(`${baseUrl}job-status/${id}`);
const statusResponse = await axios.get(`${baseUrl}job-status/${id}`, {
headers: {
Authorization: authHeader,
},
});
if (statusResponse.status !== 200) {
throw new Error("Failed to fetch job status");
}