🔀 Merge pull request #252 from LarveyOfficial/fix-multiple-download-clients

🐛Allow multiple of the same torrent client +1
This commit is contained in:
Thomas Camlong
2022-06-21 16:22:18 +02:00
committed by GitHub
2 changed files with 102 additions and 85 deletions

View File

@@ -321,9 +321,20 @@ export function AddAppShelfItemForm(props: { setOpened: (b: boolean) => void } &
/> />
</> </>
)} )}
{(form.values.type === 'Deluge' || {form.values.type === 'Deluge' && (
form.values.type === 'Transmission' || <>
form.values.type === 'qBittorrent') && ( <TextInput
label="Password"
placeholder="password"
value={form.values.password}
onChange={(event) => {
form.setFieldValue('password', event.currentTarget.value);
}}
error={form.errors.password && 'Invalid password'}
/>
</>
)}
{form.values.type === 'Transmission' && (
<> <>
<TextInput <TextInput
label="Username" label="Username"
@@ -336,7 +347,7 @@ export function AddAppShelfItemForm(props: { setOpened: (b: boolean) => void } &
/> />
<TextInput <TextInput
label="Password" label="Password"
placeholder="password" placeholder="adminadmin"
value={form.values.password} value={form.values.password}
onChange={(event) => { onChange={(event) => {
form.setFieldValue('password', event.currentTarget.value); form.setFieldValue('password', event.currentTarget.value);

View File

@@ -9,50 +9,56 @@ async function Post(req: NextApiRequest, res: NextApiResponse) {
// Get the type of service from the request url // Get the type of service from the request url
const torrents: NormalizedTorrent[] = []; const torrents: NormalizedTorrent[] = [];
const { config }: { config: Config } = req.body; const { config }: { config: Config } = req.body;
const qBittorrentService = config.services const qBittorrentServices = config.services
.filter((service) => service.type === 'qBittorrent') .filter((service) => service.type === 'qBittorrent');
.at(0);
const delugeService = config.services.filter((service) => service.type === 'Deluge').at(0); const delugeServices = config.services.filter((service) => service.type === 'Deluge');
const transmissionService = config.services const transmissionServices = config.services
.filter((service) => service.type === 'Transmission') .filter((service) => service.type === 'Transmission');
.at(0);
if (!qBittorrentService && !delugeService && !transmissionService) { if (!qBittorrentServices && !delugeServices && !transmissionServices) {
return res.status(500).json({ return res.status(500).json({
statusCode: 500, statusCode: 500,
message: 'Missing service', message: 'Missing services',
}); });
} }
if (qBittorrentService) { if (qBittorrentServices) {
for (const service of qBittorrentServices) {
torrents.push( torrents.push(
...( ...(
await new QBittorrent({ await new QBittorrent({
baseUrl: qBittorrentService.url, baseUrl: service.url,
username: qBittorrentService.username, username: service.username,
password: qBittorrentService.password, password: service.password,
}).getAllData() }).getAllData()
).torrents ).torrents
); );
} }
if (delugeService) { }
if (delugeServices) {
for (const service of delugeServices) {
torrents.push( torrents.push(
...( ...(
await new Deluge({ await new Deluge({
baseUrl: delugeService.url, baseUrl: service.url,
password: 'password' in delugeService ? delugeService.password : '', password: 'password' in service ? service.password : '',
}).getAllData()
).torrents
)
}
}
if (transmissionServices) {
for (const service of transmissionServices) {
torrents.push(
...(
await new Transmission({
baseUrl: service.url,
username: 'username' in service ? service.username : '',
password: 'password' in service ? service.password : '',
}).getAllData() }).getAllData()
).torrents ).torrents
); );
} }
if (transmissionService) {
torrents.push(
...(
await new Transmission({
baseUrl: transmissionService.url,
username: transmissionService.username,
password: 'password' in transmissionService ? transmissionService.password : '',
}).getAllData()
).torrents
);
} }
res.status(200).json(torrents); res.status(200).json(torrents);
} }