ruddarr / app

A native iOS companion app for Radarr and Sonarr instances.
https://apps.apple.com/app/ruddarr/id6476240130
MIT License
117 stars 6 forks source link

Queue: Manual import #6

Open tillkruss opened 10 months ago

tillkruss commented 10 months ago

Support manual import, or show a notice that it only works in web UI.

GET /api/v3/manualimport?downloadId=...&filterExistingFiles=false
POST /api/v3/command {payload}

Show message if import fails and tell them to use Web UI.

tillkruss commented 1 day ago
{
  "name": "ManualImport",
  "files": [
    {
      "path": "/volume2/Media/#downloads/Arcane.S02E07.Pretend.Like.Its.the.First.Time.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv",
      "seriesId": 275,
      "episodeIds": [
        20075
      ],
      "releaseGroup": "FLUX",
      "quality": {
        "quality": {
          "id": 3,
          "name": "WEBDL-1080p",
          "source": "web",
          "resolution": 1080
        },
        "revision": {
          "version": 2,
          "real": 0,
          "isRepack": true
        }
      },
      "languages": [
        {
          "id": 1,
          "name": "English"
        }
      ],
      "indexerFlags": 9,
      "releaseType": "singleEpisode",
      "downloadId": "D91C98B7137D4E8DA2942472265E5763FC826761"
    }
  ],
  "importMode": "auto"
}