Download - Extramovies.foundation - -18 - Sala... 🚀
// 3️⃣ Build download URL (includes token as query param) let url = URL(string: "https://cdn.extramovies.foundation/content/\(titleID)?token=\(license.licenseToken)")!
// 4️⃣ Create a resumable download task let task = URLSession.shared.downloadTask(with: url) localURL, response, error in // Handle completion: move file, encrypt, store metadata task.resume() activeTasks[UUID()] = task Download - ExtraMovies.foundation - -18 - Sala...
func resume(downloadID: UUID) activeTasks[downloadID]?.resume() // 3️⃣ Build download URL (includes token as
func pause(downloadID: UUID) activeTasks[downloadID]?.suspend() Download - ExtraMovies.foundation - -18 - Sala...
func cancel(downloadID: UUID) activeTasks[downloadID]?.cancel() activeTasks.removeValue(forKey: downloadID)
func startDownload(titleID: String, deviceID: String) async throws // 1️⃣ Verify eligibility via API let eligibility = try await API.checkEligibility(titleID: titleID) guard eligibility.eligible else throw DownloadError.notEligible
// 2️⃣ Request DRM license token let license = try await API.requestLicense(titleID: titleID, deviceID: deviceID)