58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
const express = require('express');
|
|
const axios = require('axios');
|
|
const router = express.Router();
|
|
|
|
const SONARR_URL = process.env.SONARR_URL;
|
|
const SONARR_API_KEY = process.env.SONARR_API_KEY;
|
|
|
|
// Get queue
|
|
router.get('/queue', async (req, res) => {
|
|
try {
|
|
const response = await axios.get(`${SONARR_URL}/api/v3/queue`, {
|
|
headers: { 'X-Api-Key': SONARR_API_KEY }
|
|
});
|
|
res.json(response.data);
|
|
} catch (error) {
|
|
res.status(500).json({ error: 'Failed to fetch Sonarr queue', details: error.message });
|
|
}
|
|
});
|
|
|
|
// Get history
|
|
router.get('/history', async (req, res) => {
|
|
try {
|
|
const response = await axios.get(`${SONARR_URL}/api/v3/history`, {
|
|
headers: { 'X-Api-Key': SONARR_API_KEY },
|
|
params: { pageSize: req.query.pageSize || 50 }
|
|
});
|
|
res.json(response.data);
|
|
} catch (error) {
|
|
res.status(500).json({ error: 'Failed to fetch Sonarr history', details: error.message });
|
|
}
|
|
});
|
|
|
|
// Get series details
|
|
router.get('/series/:id', async (req, res) => {
|
|
try {
|
|
const response = await axios.get(`${SONARR_URL}/api/v3/series/${req.params.id}`, {
|
|
headers: { 'X-Api-Key': SONARR_API_KEY }
|
|
});
|
|
res.json(response.data);
|
|
} catch (error) {
|
|
res.status(500).json({ error: 'Failed to fetch series details', details: error.message });
|
|
}
|
|
});
|
|
|
|
// Get all series with tags
|
|
router.get('/series', async (req, res) => {
|
|
try {
|
|
const response = await axios.get(`${SONARR_URL}/api/v3/series`, {
|
|
headers: { 'X-Api-Key': SONARR_API_KEY }
|
|
});
|
|
res.json(response.data);
|
|
} catch (error) {
|
|
res.status(500).json({ error: 'Failed to fetch series', details: error.message });
|
|
}
|
|
});
|
|
|
|
module.exports = router;
|