mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 11:50:14 +00:00
Merge branch 'testing' of https://github.com/bbilly1/tubearchivist into feat/react-frontend
This commit is contained in:
commit
374229d61d
@ -136,7 +136,10 @@ POST /api/channel/
|
|||||||
/api/playlist/\<playlist_id>/video/
|
/api/playlist/\<playlist_id>/video/
|
||||||
|
|
||||||
## Download Queue List View
|
## Download Queue List View
|
||||||
/api/download/
|
GET /api/download/
|
||||||
|
|
||||||
|
Parameter:
|
||||||
|
- filter: pending, ignore
|
||||||
|
|
||||||
### Add list of videos to download queue
|
### Add list of videos to download queue
|
||||||
POST /api/download/
|
POST /api/download/
|
||||||
@ -148,9 +151,30 @@ POST /api/download/
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Download Queue Item View
|
### Delete download queue items by filter
|
||||||
/api/download/\<video_id>/
|
DELETE /api/download/?filter=ignore
|
||||||
|
DELETE /api/download/?filter=pending
|
||||||
|
|
||||||
|
## Download Queue Item View
|
||||||
|
GET /api/download/\<video_id>/
|
||||||
|
POST /api/download/\<video_id>/
|
||||||
|
|
||||||
|
Ignore video in download queue:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"status": "ignore"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Add to queue previously ignored video:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"status": "pending"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
DELETE /api/download/\<video_id>/
|
||||||
|
Forget or delete from download queue
|
||||||
|
|
||||||
## Ping View
|
## Ping View
|
||||||
Validate your connection with the API
|
Validate your connection with the API
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
"""all API views"""
|
"""all API views"""
|
||||||
|
|
||||||
from api.src.search_processor import SearchProcess
|
from api.src.search_processor import SearchProcess
|
||||||
|
from home.src.download.queue import PendingInteract
|
||||||
from home.src.es.connect import ElasticWrap
|
from home.src.es.connect import ElasticWrap
|
||||||
from home.src.index.video import SponsorBlock
|
from home.src.index.video import SponsorBlock
|
||||||
from home.src.ta.config import AppConfig
|
from home.src.ta.config import AppConfig
|
||||||
from home.src.ta.helper import UrlListParser
|
from home.src.ta.helper import UrlListParser
|
||||||
from home.src.ta.ta_redis import RedisArchivist
|
from home.src.ta.ta_redis import RedisArchivist, RedisQueue
|
||||||
from home.tasks import extrac_dl, subscribe_to
|
from home.tasks import extrac_dl, subscribe_to
|
||||||
from rest_framework.authentication import (
|
from rest_framework.authentication import (
|
||||||
SessionAuthentication,
|
SessionAuthentication,
|
||||||
@ -295,9 +296,12 @@ class PlaylistApiVideoView(ApiBaseView):
|
|||||||
class DownloadApiView(ApiBaseView):
|
class DownloadApiView(ApiBaseView):
|
||||||
"""resolves to /api/download/<video_id>/
|
"""resolves to /api/download/<video_id>/
|
||||||
GET: returns metadata dict of an item in the download queue
|
GET: returns metadata dict of an item in the download queue
|
||||||
|
POST: update status of item to pending or ignore
|
||||||
|
DELETE: forget from download queue
|
||||||
"""
|
"""
|
||||||
|
|
||||||
search_base = "ta_download/_doc/"
|
search_base = "ta_download/_doc/"
|
||||||
|
valid_status = ["pending", "ignore"]
|
||||||
|
|
||||||
def get(self, request, video_id):
|
def get(self, request, video_id):
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
@ -305,19 +309,56 @@ class DownloadApiView(ApiBaseView):
|
|||||||
self.get_document(video_id)
|
self.get_document(video_id)
|
||||||
return Response(self.response, status=self.status_code)
|
return Response(self.response, status=self.status_code)
|
||||||
|
|
||||||
|
def post(self, request, video_id):
|
||||||
|
"""post to video to change status"""
|
||||||
|
item_status = request.data["status"]
|
||||||
|
if item_status not in self.valid_status:
|
||||||
|
message = f"{video_id}: invalid status {item_status}"
|
||||||
|
print(message)
|
||||||
|
return Response({"message": message}, status=400)
|
||||||
|
|
||||||
|
print(f"{video_id}: change status to {item_status}")
|
||||||
|
PendingInteract(video_id=video_id, status=item_status).update_status()
|
||||||
|
RedisQueue().clear_item(video_id)
|
||||||
|
|
||||||
|
return Response(request.data)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def delete(request, video_id):
|
||||||
|
# pylint: disable=unused-argument
|
||||||
|
"""delete single video from queue"""
|
||||||
|
print(f"{video_id}: delete from queue")
|
||||||
|
PendingInteract(video_id=video_id).delete_item()
|
||||||
|
|
||||||
|
return Response({"success": True})
|
||||||
|
|
||||||
|
|
||||||
class DownloadApiListView(ApiBaseView):
|
class DownloadApiListView(ApiBaseView):
|
||||||
"""resolves to /api/download/
|
"""resolves to /api/download/
|
||||||
GET: returns latest videos in the download queue
|
GET: returns latest videos in the download queue
|
||||||
POST: add a list of videos to download queue
|
POST: add a list of videos to download queue
|
||||||
|
DELETE: remove items based on query filter
|
||||||
"""
|
"""
|
||||||
|
|
||||||
search_base = "ta_download/_search/"
|
search_base = "ta_download/_search/"
|
||||||
|
valid_filter = ["pending", "ignore"]
|
||||||
|
|
||||||
def get(self, request):
|
def get(self, request):
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
"""get request"""
|
"""get request"""
|
||||||
data = {"query": {"match_all": {}}}
|
query_filter = request.GET.get("filter", False)
|
||||||
|
data = {
|
||||||
|
"query": {"match_all": {}},
|
||||||
|
"sort": [{"timestamp": {"order": "asc"}}],
|
||||||
|
}
|
||||||
|
if query_filter:
|
||||||
|
if query_filter not in self.valid_filter:
|
||||||
|
message = f"invalid url query filder: {query_filter}"
|
||||||
|
print(message)
|
||||||
|
return Response({"message": message}, status=400)
|
||||||
|
|
||||||
|
data["query"] = {"term": {"status": {"value": query_filter}}}
|
||||||
|
|
||||||
self.get_document_list(data)
|
self.get_document_list(data)
|
||||||
self.get_paginate()
|
self.get_paginate()
|
||||||
return Response(self.response)
|
return Response(self.response)
|
||||||
@ -347,6 +388,20 @@ class DownloadApiListView(ApiBaseView):
|
|||||||
|
|
||||||
return Response(data)
|
return Response(data)
|
||||||
|
|
||||||
|
def delete(self, request):
|
||||||
|
"""delete download queue"""
|
||||||
|
query_filter = request.GET.get("filter", False)
|
||||||
|
if query_filter not in self.valid_filter:
|
||||||
|
message = f"invalid url query filter: {query_filter}"
|
||||||
|
print(message)
|
||||||
|
return Response({"message": message}, status=400)
|
||||||
|
|
||||||
|
message = f"delete queue by status: {query_filter}"
|
||||||
|
print(message)
|
||||||
|
PendingInteract(status=query_filter).delete_by_status()
|
||||||
|
|
||||||
|
return Response({"message": message})
|
||||||
|
|
||||||
|
|
||||||
class PingView(ApiBaseView):
|
class PingView(ApiBaseView):
|
||||||
"""resolves to /api/ping/
|
"""resolves to /api/ping/
|
||||||
|
Loading…
Reference in New Issue
Block a user