Compare commits

...

9 Commits

Author SHA1 Message Date
Simon e83720290f
cleanup 2024-04-20 01:06:30 +02:00
Simon 74a4eb263a
revert but extend timeout 2024-04-20 01:05:42 +02:00
Simon 689e05ca47
merge master 2024-04-20 00:43:23 +02:00
Simon 3e0e13e18e
Merge pull request #29 from rockerbacon/fix-docker-user
Allow running docker container with any user
2024-04-20 00:53:12 +07:00
Simon 6d7af2698e Merge branch 'master' into pr_test_29 2024-04-19 19:49:45 +02:00
Simon 6978ca450d
Merge pull request #34 from lukyjay/patch-1
Update README.md to remove interactive flag
2024-04-20 00:47:49 +07:00
Simon 965d21cbb2
fix linter 2024-04-19 19:35:10 +02:00
Jayden d71d26a4f1
Update README.md to remove interactive flag
Remove the -it flag from the docker exec command.
2024-04-16 21:58:05 +08:00
rockerbacon e365f73018 allow running docker container with any user 2024-02-02 13:39:16 -03:00
3 changed files with 13 additions and 13 deletions

View File

@ -7,12 +7,12 @@ ENV PATH=/root/.local/bin:$PATH
RUN if [ "$INSTALL_DEBUG" ] ; then \
apt-get -y update && apt-get -y install --no-install-recommends \
vim htop bmon net-tools iputils-ping procps curl \
&& pip install --user ipython \
&& pip install ipython \
; fi
# install requirements
COPY ./requirements.txt /requirements.txt
RUN pip install --user -r requirements.txt
RUN pip install -r requirements.txt
COPY app /app
WORKDIR app

View File

@ -61,7 +61,7 @@ Mount the `/youtube` folder from Tube Archivist also in this container at `/yout
### Manual trigger
For an initial import or for other irregular occasions, trigger the library scan from outside the container, e.g.:
```bash
docker exec -it tubearchivist-jf python main.py
docker exec tubearchivist-jf python main.py
```
### Auto trigger

View File

@ -47,7 +47,9 @@ class Library:
def _get_all_series(self) -> dict:
"""get all shows indexed in jf"""
path: str = f"Items?Recursive=true&IncludeItemTypes=Series&fields=ParentId,Path&ParentId={self.yt_collection}" # noqa: E501
path: str = (
f"Items?Recursive=true&IncludeItemTypes=Series&fields=ParentId,Path&ParentId={self.yt_collection}" # noqa: E501
)
all_shows: dict = Jellyfin().get(path)
return all_shows
@ -71,7 +73,9 @@ class Library:
def refresh_collection(self, collection_id: str) -> None:
"""trigger collection refresh"""
path: str = f"Items/{collection_id}/Refresh?Recursive=true&ImageRefreshMode=Default&MetadataRefreshMode=Default" # noqa: E501
path: str = (
f"Items/{collection_id}/Refresh?Recursive=true&ImageRefreshMode=Default&MetadataRefreshMode=Default" # noqa: E501
)
Jellyfin().post(path, False)
while True:
@ -208,10 +212,12 @@ class Show:
def _wait_for_season(self, expected_season: str) -> None:
"""wait for season to be created in JF"""
jf_id: str = self.show["Id"]
path: str = f"Items/{jf_id}/Refresh?Recursive=true&ImageRefreshMode=Default&MetadataRefreshMode=Default" # noqa: E501
path: str = (
f"Items/{jf_id}/Refresh?Recursive=true&ImageRefreshMode=Default&MetadataRefreshMode=Default" # noqa: E501
)
print(f"[setup] {path=}")
Jellyfin().post(path, False)
while True:
for _ in range(24):
all_existing: set[str] = set(self._get_existing_seasons())
print(f"[setup] seasons: {all_existing} {expected_season=}")
@ -230,14 +236,8 @@ class Show:
path: str = f"Shows/{series_id}/Seasons"
all_seasons: dict = Jellyfin().get(path)
# print(f"[setup] {path=} all_seasons_items={all_seasons['Items']}")
return [str(i.get("IndexNumber")) for i in all_seasons["Items"]]
# res = [str(i.get("Name")) for i in all_seasons["Items"]]
# return [name.split(' ')[1] if ' ' in name else name for name in res]
def delete_folders(self, folders: list[str]) -> None:
"""delete temporary folders created"""
for folder in folders: