Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db460fb9b3 | ||
|
|
b3ce276d1b | ||
|
|
682e76de2f | ||
|
|
70a0ff0e84 | ||
|
|
085d6dc296 | ||
|
|
59dba20c1e | ||
|
|
76574e2bee | ||
|
|
d306188805 | ||
|
|
1d88d4bb50 |
Executable
BIN
Binary file not shown.
@@ -7,7 +7,7 @@ A **native Linux** GUI for mass renaming files. Inspired by [Bulk Rename Utility
|
|||||||
- **GUI** – Structure renames with rule panels; no command line needed.
|
- **GUI** – Structure renames with rule panels; no command line needed.
|
||||||
- **Preview** – See “Original → New name” for every file before committing.
|
- **Preview** – See “Original → New name” for every file before committing.
|
||||||
- **Multiple rules** – Combine rules (order: Replace → Regex → Insert → Remove → Case → Numbering → Episode renumber → Prefix/Suffix). Enable only the rules you need.
|
- **Multiple rules** – Combine rules (order: Replace → Regex → Insert → Remove → Case → Numbering → Episode renumber → Prefix/Suffix). Enable only the rules you need.
|
||||||
- **Episode renumbering** – Replace episode numbers (e.g. `S01E05 - Title` → `S01E01 - Title`) while keeping season and title. Start number and zero-padding configurable.
|
- **Episode renumbering** – Replace episode numbers (e.g. `S01E05 - Title` → `S01E01 - Title`) while keeping season and title. Multi-episode files like `S01E05-E06` become `S01E01-E02` (range length preserved). Start, step, and zero-padding configurable.
|
||||||
- **Replace / Regex** – Plain text find/replace or full regex with capture groups.
|
- **Replace / Regex** – Plain text find/replace or full regex with capture groups.
|
||||||
- **Insert / Remove** – Insert text at start/end/position; remove text, digits, or first/last N characters.
|
- **Insert / Remove** – Insert text at start/end/position; remove text, digits, or first/last N characters.
|
||||||
- **Case** – Title Case, UPPER, lower, Sentence case.
|
- **Case** – Title Case, UPPER, lower, Sentence case.
|
||||||
@@ -62,6 +62,10 @@ Sort order is the current list order (alphabetical by filename). Reorder files i
|
|||||||
3. Enable **9. CSV mapping**, click **Browse…** and select the CSV.
|
3. Enable **9. CSV mapping**, click **Browse…** and select the CSV.
|
||||||
4. Only rows that match a current filename in the folder are renamed; others are unchanged. You can combine with other rules (CSV is applied in rule order).
|
4. Only rows that match a current filename in the folder are renamed; others are unchanged. You can combine with other rules (CSV is applied in rule order).
|
||||||
|
|
||||||
|
## Gear Lever (AppImage updates)
|
||||||
|
|
||||||
|
To have [Gear Lever](https://github.com/mijorus/gearlever) see new releases when we push them and update the AppImage from there, see **[docs/GEARLEVER.md](docs/GEARLEVER.md)** for configuration (custom update URL for Gitea, or static URL).
|
||||||
|
|
||||||
## AppImage (distribution)
|
## AppImage (distribution)
|
||||||
|
|
||||||
To build a portable AppImage:
|
To build a portable AppImage:
|
||||||
|
|||||||
+18
-1
@@ -9,6 +9,7 @@ cd "$(dirname "$0")"
|
|||||||
APP_NAME="HSRename"
|
APP_NAME="HSRename"
|
||||||
APPDIR="${APP_NAME}.AppDir"
|
APPDIR="${APP_NAME}.AppDir"
|
||||||
EXE_NAME="$APP_NAME"
|
EXE_NAME="$APP_NAME"
|
||||||
|
VERSION="$(tr -d '[:space:]' < VERSION 2>/dev/null || echo "")"
|
||||||
|
|
||||||
echo "=== Installing build deps ==="
|
echo "=== Installing build deps ==="
|
||||||
pip install -q -r requirements.txt -r requirements-build.txt
|
pip install -q -r requirements.txt -r requirements-build.txt
|
||||||
@@ -19,6 +20,8 @@ pyinstaller --noconfirm --onedir --windowed \
|
|||||||
--hidden-import=engine \
|
--hidden-import=engine \
|
||||||
--hidden-import=engine.rules \
|
--hidden-import=engine.rules \
|
||||||
--hidden-import=engine.pipeline \
|
--hidden-import=engine.pipeline \
|
||||||
|
--hidden-import=engine.tvdb_client \
|
||||||
|
--hidden-import=engine.episode_match \
|
||||||
--hidden-import=gui \
|
--hidden-import=gui \
|
||||||
--hidden-import=gui.main_window \
|
--hidden-import=gui.main_window \
|
||||||
--hidden-import=gui.rule_widgets \
|
--hidden-import=gui.rule_widgets \
|
||||||
@@ -28,6 +31,18 @@ echo "=== Creating AppDir ==="
|
|||||||
rm -rf "$APPDIR"
|
rm -rf "$APPDIR"
|
||||||
mkdir -p "$APPDIR/usr/bin"
|
mkdir -p "$APPDIR/usr/bin"
|
||||||
cp -a "dist/$EXE_NAME" "$APPDIR/usr/bin/"
|
cp -a "dist/$EXE_NAME" "$APPDIR/usr/bin/"
|
||||||
|
mkdir -p "$APPDIR/usr/share/hsrename"
|
||||||
|
echo "$VERSION" > "$APPDIR/usr/share/hsrename/VERSION"
|
||||||
|
if [[ -f "packaging/release-stamp-${VERSION}.txt" ]]; then
|
||||||
|
cp "packaging/release-stamp-${VERSION}.txt" "$APPDIR/usr/share/hsrename/release-stamp.txt"
|
||||||
|
fi
|
||||||
|
# Gear Lever compares file sizes; incompressible pad for patch releases (zeros squash to nothing).
|
||||||
|
dd if=/dev/urandom of="$APPDIR/usr/share/hsrename/.buildpad" bs=1024 count=300 status=none
|
||||||
|
cat > "$APPDIR/usr/share/hsrename/changelog.txt" << EOF
|
||||||
|
HSRename ${VERSION}
|
||||||
|
- Fix TheTVDB search dropping results (parse series-76320 style IDs)
|
||||||
|
- Gear Lever Forgejo update docs
|
||||||
|
EOF
|
||||||
|
|
||||||
cat > "$APPDIR/AppRun" << EOF
|
cat > "$APPDIR/AppRun" << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
@@ -37,7 +52,7 @@ exec "\$HERE/usr/bin/$EXE_NAME/$EXE_NAME" "\$@"
|
|||||||
EOF
|
EOF
|
||||||
chmod +x "$APPDIR/AppRun"
|
chmod +x "$APPDIR/AppRun"
|
||||||
|
|
||||||
cat > "$APPDIR/hsrename.desktop" << 'EOF'
|
cat > "$APPDIR/hsrename.desktop" << EOF
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=HSRename
|
Name=HSRename
|
||||||
Comment=Mass rename files with preview and flexible rules
|
Comment=Mass rename files with preview and flexible rules
|
||||||
@@ -45,6 +60,7 @@ Exec=HSRename
|
|||||||
Icon=HSRename
|
Icon=HSRename
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Utility;FileTools;
|
Categories=Utility;FileTools;
|
||||||
|
X-AppImage-Version=${VERSION}
|
||||||
EOF
|
EOF
|
||||||
# Use project icon as app icon and logo
|
# Use project icon as app icon and logo
|
||||||
if [[ -f HSRename.png ]]; then
|
if [[ -f HSRename.png ]]; then
|
||||||
@@ -54,6 +70,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "=== Building AppImage (requires appimagetool) ==="
|
echo "=== Building AppImage (requires appimagetool) ==="
|
||||||
|
# Note: appimagetool does not accept plain https URLs for -u; use zsync/gh-releases-zsync per AppImage docs.
|
||||||
if command -v appimagetool &>/dev/null; then
|
if command -v appimagetool &>/dev/null; then
|
||||||
OUT="${APP_NAME}.AppImage"
|
OUT="${APP_NAME}.AppImage"
|
||||||
appimagetool "$APPDIR" "$OUT"
|
appimagetool "$APPDIR" "$OUT"
|
||||||
|
|||||||
@@ -0,0 +1,67 @@
|
|||||||
|
# Using HSRename with Gear Lever
|
||||||
|
|
||||||
|
[Gear Lever](https://github.com/mijorus/gearlever) 4.x can update HSRename from Gitea releases. Gitea uses the same API as **Forgejo**, which Gear Lever supports directly.
|
||||||
|
|
||||||
|
## Important: use Forgejo, not Default
|
||||||
|
|
||||||
|
In the HSRename details screen:
|
||||||
|
|
||||||
|
- **Source** must be **Forgejo** (not `Default`).
|
||||||
|
- The **Website** field is only metadata. It does **not** check for updates.
|
||||||
|
- Do **not** paste the release download URL into Website.
|
||||||
|
|
||||||
|
## Configure updates (Gear Lever 4+)
|
||||||
|
|
||||||
|
1. Open **Gear Lever** → select **HSRename**.
|
||||||
|
2. Set **Source** to **Forgejo**.
|
||||||
|
3. Fill in:
|
||||||
|
|
||||||
|
| Field | Value |
|
||||||
|
|-------|--------|
|
||||||
|
| **Repo URL** | `https://git.hisora.dev/Dawnsorrow/HS-Rename` |
|
||||||
|
| **Release file name** | `HSRename.AppImage` |
|
||||||
|
| **Allow pre-releases** | Off (unless you want draft releases) |
|
||||||
|
|
||||||
|
4. Save, then use **Check for updates** / **List updates**.
|
||||||
|
|
||||||
|
If the fields validate (no error), Gear Lever queries:
|
||||||
|
|
||||||
|
`https://git.hisora.dev/api/v1/repos/Dawnsorrow/HS-Rename/releases/latest`
|
||||||
|
|
||||||
|
and compares the release asset size with your local AppImage.
|
||||||
|
|
||||||
|
## Direct download URL pattern
|
||||||
|
|
||||||
|
For release tag `vX.Y.Z`:
|
||||||
|
|
||||||
|
```
|
||||||
|
https://git.hisora.dev/Dawnsorrow/HS-Rename/releases/download/vX.Y.Z/HSRename.AppImage
|
||||||
|
```
|
||||||
|
|
||||||
|
Latest release today:
|
||||||
|
|
||||||
|
```
|
||||||
|
https://git.hisora.dev/Dawnsorrow/HS-Rename/releases/download/v1.0.3/HSRename.AppImage
|
||||||
|
```
|
||||||
|
|
||||||
|
## Fallback: Static URL
|
||||||
|
|
||||||
|
If Forgejo does not work in your Gear Lever build, set **Source** to **Static URL** and paste the **exact** URL of the newest release (update this manually each release):
|
||||||
|
|
||||||
|
```
|
||||||
|
https://git.hisora.dev/Dawnsorrow/HS-Rename/releases/download/v1.0.3/HSRename.AppImage
|
||||||
|
```
|
||||||
|
|
||||||
|
## CLI (if `gearlever` is installed)
|
||||||
|
|
||||||
|
Gear Lever 4 may use different CLI options than older docs. Prefer the GUI Forgejo fields above. If your install still supports `--set-update-url`, the old wildcard pattern is **not** reliable for self-hosted Gitea; use Forgejo instead.
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
| Symptom | Likely cause |
|
||||||
|
|---------|----------------|
|
||||||
|
| No update offered | Source is still **Default**, or local file is already the latest release (same size as `releases/latest`). |
|
||||||
|
| URL looks truncated in Website | Website is cosmetic only; configure **Forgejo** fields instead. |
|
||||||
|
| Update never finds newer builds | Wrong repo URL, wrong filename, or release has no `HSRename.AppImage` asset attached. |
|
||||||
|
|
||||||
|
Releases page: https://git.hisora.dev/Dawnsorrow/HS-Rename/releases
|
||||||
+2
-1
@@ -1,4 +1,4 @@
|
|||||||
from .rules import Rule, ReplaceRule, InsertRule, RemoveRule, CaseRule, NumberingRule, EpisodeRenumberRule, RegexRule, PrefixSuffixRule, CsvMappingRule
|
from .rules import Rule, ReplaceRule, InsertRule, RemoveRule, CaseRule, NumberingRule, EpisodeRenumberRule, TvdbEpisodeRenumberRule, RegexRule, PrefixSuffixRule, CsvMappingRule
|
||||||
from .pipeline import apply_pipeline, compute_preview
|
from .pipeline import apply_pipeline, compute_preview
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
@@ -9,6 +9,7 @@ __all__ = [
|
|||||||
"CaseRule",
|
"CaseRule",
|
||||||
"NumberingRule",
|
"NumberingRule",
|
||||||
"EpisodeRenumberRule",
|
"EpisodeRenumberRule",
|
||||||
|
"TvdbEpisodeRenumberRule",
|
||||||
"RegexRule",
|
"RegexRule",
|
||||||
"PrefixSuffixRule",
|
"PrefixSuffixRule",
|
||||||
"CsvMappingRule",
|
"CsvMappingRule",
|
||||||
|
|||||||
@@ -0,0 +1,159 @@
|
|||||||
|
"""
|
||||||
|
Match episode titles from filenames against a reference episode list (e.g. TheTVDB).
|
||||||
|
"""
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import re
|
||||||
|
from difflib import SequenceMatcher
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
from .tvdb_client import TvdbEpisode
|
||||||
|
|
||||||
|
DEFAULT_EPISODE_PATTERN = r"(.*?[Ss]\d+[Ee])(\d+)(-[Ee](\d+))?(.*)"
|
||||||
|
|
||||||
|
|
||||||
|
def normalize_title(title: str) -> str:
|
||||||
|
"""Lowercase, strip punctuation, collapse whitespace for fuzzy comparison."""
|
||||||
|
t = title.lower()
|
||||||
|
t = re.sub(r"[^\w\s]", " ", t, flags=re.UNICODE)
|
||||||
|
return re.sub(r"\s+", " ", t).strip()
|
||||||
|
|
||||||
|
|
||||||
|
def parse_episode_stem(stem: str, pattern: str = DEFAULT_EPISODE_PATTERN) -> Optional[dict]:
|
||||||
|
"""
|
||||||
|
Parse SxxExx-style filename stem.
|
||||||
|
Returns dict with prefix, episode numbers, title rest, and span — or None if no match.
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
m = re.match(pattern, stem)
|
||||||
|
except re.error:
|
||||||
|
return None
|
||||||
|
if not m:
|
||||||
|
return None
|
||||||
|
prefix, old_first_s, _range_dash_e, old_second_s, rest = (
|
||||||
|
m.group(1),
|
||||||
|
m.group(2),
|
||||||
|
m.group(3),
|
||||||
|
m.group(4),
|
||||||
|
m.group(5),
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
old_first = int(old_first_s)
|
||||||
|
except ValueError:
|
||||||
|
return None
|
||||||
|
span = 1
|
||||||
|
if old_second_s is not None:
|
||||||
|
try:
|
||||||
|
old_second = int(old_second_s)
|
||||||
|
except ValueError:
|
||||||
|
return None
|
||||||
|
span = old_second - old_first + 1
|
||||||
|
if span < 1:
|
||||||
|
span = 1
|
||||||
|
title = rest.strip()
|
||||||
|
if title.startswith("-") or title.startswith("–"):
|
||||||
|
title = title[1:].strip()
|
||||||
|
if title.startswith("_"):
|
||||||
|
title = title[1:].strip()
|
||||||
|
return {
|
||||||
|
"prefix": prefix,
|
||||||
|
"old_first": old_first,
|
||||||
|
"span": span,
|
||||||
|
"title": title,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def rewrite_episode_number(
|
||||||
|
stem: str,
|
||||||
|
new_first_ep: int,
|
||||||
|
padding: int = 2,
|
||||||
|
pattern: str = DEFAULT_EPISODE_PATTERN,
|
||||||
|
) -> str:
|
||||||
|
"""Replace episode number block in stem, preserving prefix, span, and title."""
|
||||||
|
parsed = parse_episode_stem(stem, pattern)
|
||||||
|
if not parsed:
|
||||||
|
return stem
|
||||||
|
try:
|
||||||
|
m = re.match(pattern, stem)
|
||||||
|
except re.error:
|
||||||
|
return stem
|
||||||
|
if not m:
|
||||||
|
return stem
|
||||||
|
prefix = m.group(1)
|
||||||
|
rest = m.group(5)
|
||||||
|
span = parsed["span"]
|
||||||
|
pad = max(1, padding)
|
||||||
|
e1 = str(new_first_ep).zfill(pad)
|
||||||
|
if span <= 1:
|
||||||
|
return f"{prefix}{e1}{rest}"
|
||||||
|
e2 = str(new_first_ep + span - 1).zfill(pad)
|
||||||
|
return f"{prefix}{e1}-E{e2}{rest}"
|
||||||
|
|
||||||
|
|
||||||
|
def _similarity(a: str, b: str) -> float:
|
||||||
|
if not a or not b:
|
||||||
|
return 0.0
|
||||||
|
if a == b:
|
||||||
|
return 1.0
|
||||||
|
return SequenceMatcher(None, a, b).ratio()
|
||||||
|
|
||||||
|
|
||||||
|
def match_filenames_to_episodes(
|
||||||
|
filenames: list[str],
|
||||||
|
episodes: list[TvdbEpisode],
|
||||||
|
pattern: str = DEFAULT_EPISODE_PATTERN,
|
||||||
|
min_score: float = 0.72,
|
||||||
|
) -> tuple[dict[str, int], list[str], list[str]]:
|
||||||
|
"""
|
||||||
|
Match filenames to TheTVDB episode numbers by title.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
mapping: original filename -> correct episode number
|
||||||
|
unmatched_files: filenames that could not be matched
|
||||||
|
notes: human-readable match details for UI
|
||||||
|
"""
|
||||||
|
file_entries: list[tuple[str, str, str]] = []
|
||||||
|
for name in filenames:
|
||||||
|
stem = name.rsplit(".", 1)[0] if "." in name and not name.startswith(".") else name
|
||||||
|
parsed = parse_episode_stem(stem, pattern)
|
||||||
|
if not parsed or not parsed["title"]:
|
||||||
|
continue
|
||||||
|
norm = normalize_title(parsed["title"])
|
||||||
|
if norm:
|
||||||
|
file_entries.append((name, norm, parsed["title"]))
|
||||||
|
|
||||||
|
ep_entries = [(ep.number, normalize_title(ep.name), ep.name) for ep in episodes]
|
||||||
|
|
||||||
|
pairs: list[tuple[float, str, int, str, str]] = []
|
||||||
|
for fname, fnorm, raw_title in file_entries:
|
||||||
|
for ep_num, enorm, ep_name in ep_entries:
|
||||||
|
score = _similarity(fnorm, enorm)
|
||||||
|
pairs.append((score, fname, ep_num, raw_title, ep_name))
|
||||||
|
|
||||||
|
pairs.sort(key=lambda x: (-x[0], x[1], x[2]))
|
||||||
|
|
||||||
|
mapping: dict[str, int] = {}
|
||||||
|
used_files: set[str] = set()
|
||||||
|
used_eps: set[int] = set()
|
||||||
|
notes: list[str] = []
|
||||||
|
|
||||||
|
for score, fname, ep_num, raw_title, ep_name in pairs:
|
||||||
|
if score < min_score:
|
||||||
|
break
|
||||||
|
if fname in used_files or ep_num in used_eps:
|
||||||
|
continue
|
||||||
|
mapping[fname] = ep_num
|
||||||
|
used_files.add(fname)
|
||||||
|
used_eps.add(ep_num)
|
||||||
|
pct = int(round(score * 100))
|
||||||
|
notes.append(f"{fname}: E{ep_num:02d} ← “{ep_name}” ({pct}% match, file title “{raw_title}”)")
|
||||||
|
|
||||||
|
unmatched_files = [
|
||||||
|
name for name in filenames
|
||||||
|
if name not in mapping
|
||||||
|
and parse_episode_stem(
|
||||||
|
name.rsplit(".", 1)[0] if "." in name and not name.startswith(".") else name,
|
||||||
|
pattern,
|
||||||
|
)
|
||||||
|
]
|
||||||
|
return mapping, unmatched_files, notes
|
||||||
+67
-7
@@ -9,6 +9,8 @@ from dataclasses import dataclass, field
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import List, Optional
|
from typing import List, Optional
|
||||||
|
|
||||||
|
from .episode_match import rewrite_episode_number
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class Rule(ABC):
|
class Rule(ABC):
|
||||||
@@ -201,14 +203,14 @@ class NumberingRule(Rule):
|
|||||||
return stem, ext
|
return stem, ext
|
||||||
|
|
||||||
|
|
||||||
# Episode renumber: match SxxExx or similar, replace episode number only, keep title
|
# Episode renumber: match SxxExx or SxxExx-Eyy, replace episode block; keep title
|
||||||
@dataclass
|
@dataclass
|
||||||
class EpisodeRenumberRule(Rule):
|
class EpisodeRenumberRule(Rule):
|
||||||
start: int = 1
|
start: int = 1
|
||||||
step: int = 1
|
step: int = 1
|
||||||
padding: int = 2
|
padding: int = 2
|
||||||
# Pattern: group 1 = prefix (e.g. "S01E"), group 2 = episode digits, group 3 = rest (title)
|
# Group 1 = prefix (e.g. "S01E"), 2 = first ep digits, 3 = full "-E06" or None, 4 = second ep if range, 5 = rest (title)
|
||||||
pattern: str = r"(.*?[Ss]\d+[Ee])(\d+)(.*)"
|
pattern: str = r"(.*?[Ss]\d+[Ee])(\d+)(-[Ee](\d+))?(.*)"
|
||||||
|
|
||||||
def apply(
|
def apply(
|
||||||
self,
|
self,
|
||||||
@@ -224,10 +226,68 @@ class EpisodeRenumberRule(Rule):
|
|||||||
return stem, ext
|
return stem, ext
|
||||||
if not m:
|
if not m:
|
||||||
return stem, ext
|
return stem, ext
|
||||||
prefix, _old_ep, rest = m.group(1), m.group(2), m.group(3)
|
prefix, old_first_s, range_dash_e, old_second_s, rest = (
|
||||||
ep_num = self.start + index * self.step
|
m.group(1),
|
||||||
ep_str = str(ep_num).zfill(max(1, self.padding))
|
m.group(2),
|
||||||
new_stem = f"{prefix}{ep_str}{rest}"
|
m.group(3),
|
||||||
|
m.group(4),
|
||||||
|
m.group(5),
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
old_first = int(old_first_s)
|
||||||
|
except ValueError:
|
||||||
|
return stem, ext
|
||||||
|
span = 1
|
||||||
|
if old_second_s is not None:
|
||||||
|
try:
|
||||||
|
old_second = int(old_second_s)
|
||||||
|
except ValueError:
|
||||||
|
return stem, ext
|
||||||
|
span = old_second - old_first + 1
|
||||||
|
if span < 1:
|
||||||
|
span = 1
|
||||||
|
ep_new_first = self.start + index * self.step
|
||||||
|
pad = max(1, self.padding)
|
||||||
|
e1 = str(ep_new_first).zfill(pad)
|
||||||
|
if span <= 1:
|
||||||
|
new_stem = f"{prefix}{e1}{rest}"
|
||||||
|
else:
|
||||||
|
ep_new_last = ep_new_first + span - 1
|
||||||
|
e2 = str(ep_new_last).zfill(pad)
|
||||||
|
# Match common style: S01E01-E02 (second block uses E again)
|
||||||
|
new_stem = f"{prefix}{e1}-E{e2}{rest}"
|
||||||
|
return new_stem, ext
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass
|
||||||
|
class TvdbEpisodeRenumberRule(Rule):
|
||||||
|
"""
|
||||||
|
Renumber SxxExx blocks using a pre-built filename → episode number mapping
|
||||||
|
(typically from TheTVDB title matching).
|
||||||
|
"""
|
||||||
|
episode_mapping: dict = field(default_factory=dict, repr=False)
|
||||||
|
padding: int = 2
|
||||||
|
pattern: str = r"(.*?[Ss]\d+[Ee])(\d+)(-[Ee](\d+))?(.*)"
|
||||||
|
|
||||||
|
def apply(
|
||||||
|
self,
|
||||||
|
stem: str,
|
||||||
|
ext: str,
|
||||||
|
index: int,
|
||||||
|
total: int,
|
||||||
|
original_name: Optional[str] = None,
|
||||||
|
) -> tuple[str, str]:
|
||||||
|
if not self.episode_mapping or original_name is None:
|
||||||
|
return stem, ext
|
||||||
|
new_ep = self.episode_mapping.get(original_name)
|
||||||
|
if new_ep is None:
|
||||||
|
return stem, ext
|
||||||
|
new_stem = rewrite_episode_number(
|
||||||
|
stem,
|
||||||
|
int(new_ep),
|
||||||
|
padding=self.padding,
|
||||||
|
pattern=self.pattern,
|
||||||
|
)
|
||||||
return new_stem, ext
|
return new_stem, ext
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,193 @@
|
|||||||
|
"""
|
||||||
|
TheTVDB API v4 client (read-only). Uses stdlib urllib — no extra dependencies.
|
||||||
|
"""
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import json
|
||||||
|
import re
|
||||||
|
import urllib.error
|
||||||
|
import urllib.parse
|
||||||
|
import urllib.request
|
||||||
|
from dataclasses import dataclass
|
||||||
|
from typing import Any, Optional
|
||||||
|
|
||||||
|
BASE_URL = "https://api4.thetvdb.com/v4"
|
||||||
|
TVDB_API_KEY = "78384b24-0f0b-461e-9415-69cce3da35e4"
|
||||||
|
|
||||||
|
# Labels and API path segments for /series/{id}/episodes/{season-type}
|
||||||
|
SEASON_TYPE_CHOICES: list[tuple[str, str]] = [
|
||||||
|
("Default (TheTVDB default for show)", "default"),
|
||||||
|
("Official / aired order", "official"),
|
||||||
|
("DVD order", "dvd"),
|
||||||
|
("Absolute order", "absolute"),
|
||||||
|
("Alternate order", "alternate"),
|
||||||
|
("Regional order", "regional"),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class TvdbSeries:
|
||||||
|
id: int
|
||||||
|
name: str
|
||||||
|
year: Optional[str] = None
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class TvdbEpisode:
|
||||||
|
number: int
|
||||||
|
season_number: int
|
||||||
|
name: str
|
||||||
|
|
||||||
|
|
||||||
|
class TvdbError(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_series_id(item: dict[str, Any]) -> Optional[int]:
|
||||||
|
"""Extract numeric series id from a TheTVDB v4 search hit."""
|
||||||
|
tvdb_id = item.get("tvdb_id")
|
||||||
|
if tvdb_id is not None:
|
||||||
|
try:
|
||||||
|
return int(tvdb_id)
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
raw_id = item.get("id")
|
||||||
|
if raw_id is None:
|
||||||
|
return None
|
||||||
|
if isinstance(raw_id, int):
|
||||||
|
return raw_id
|
||||||
|
if isinstance(raw_id, str):
|
||||||
|
if raw_id.isdigit():
|
||||||
|
return int(raw_id)
|
||||||
|
m = re.match(r"^series-(\d+)$", raw_id, re.IGNORECASE)
|
||||||
|
if m:
|
||||||
|
return int(m.group(1))
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
class TvdbClient:
|
||||||
|
def __init__(self, api_key: str, pin: str = ""):
|
||||||
|
self.api_key = api_key.strip()
|
||||||
|
self.pin = pin.strip()
|
||||||
|
self._token: Optional[str] = None
|
||||||
|
|
||||||
|
def _request(
|
||||||
|
self,
|
||||||
|
method: str,
|
||||||
|
path: str,
|
||||||
|
params: Optional[dict[str, Any]] = None,
|
||||||
|
body: Optional[dict[str, Any]] = None,
|
||||||
|
) -> dict[str, Any]:
|
||||||
|
if not self._token and path != "/login":
|
||||||
|
self.login()
|
||||||
|
|
||||||
|
url = BASE_URL + path
|
||||||
|
if params:
|
||||||
|
query = urllib.parse.urlencode({k: v for k, v in params.items() if v is not None})
|
||||||
|
if query:
|
||||||
|
url = f"{url}?{query}"
|
||||||
|
|
||||||
|
data_bytes: Optional[bytes] = None
|
||||||
|
headers = {"Accept": "application/json"}
|
||||||
|
if body is not None:
|
||||||
|
data_bytes = json.dumps(body).encode("utf-8")
|
||||||
|
headers["Content-Type"] = "application/json"
|
||||||
|
if self._token:
|
||||||
|
headers["Authorization"] = f"Bearer {self._token}"
|
||||||
|
|
||||||
|
req = urllib.request.Request(url, data=data_bytes, headers=headers, method=method)
|
||||||
|
try:
|
||||||
|
with urllib.request.urlopen(req, timeout=30) as resp:
|
||||||
|
payload = json.loads(resp.read().decode("utf-8"))
|
||||||
|
except urllib.error.HTTPError as e:
|
||||||
|
detail = e.read().decode("utf-8", errors="replace")
|
||||||
|
raise TvdbError(f"TheTVDB HTTP {e.code}: {detail}") from e
|
||||||
|
except urllib.error.URLError as e:
|
||||||
|
raise TvdbError(f"TheTVDB network error: {e.reason}") from e
|
||||||
|
except json.JSONDecodeError as e:
|
||||||
|
raise TvdbError("TheTVDB returned invalid JSON") from e
|
||||||
|
|
||||||
|
if payload.get("status") == "failure":
|
||||||
|
msg = payload.get("message") or "Unknown TheTVDB error"
|
||||||
|
raise TvdbError(msg)
|
||||||
|
return payload
|
||||||
|
|
||||||
|
def login(self) -> None:
|
||||||
|
if not self.api_key:
|
||||||
|
raise TvdbError("TheTVDB API key is required")
|
||||||
|
body: dict[str, str] = {"apikey": self.api_key}
|
||||||
|
if self.pin:
|
||||||
|
body["pin"] = self.pin
|
||||||
|
payload = self._request("POST", "/login", body=body)
|
||||||
|
token = payload.get("data", {}).get("token")
|
||||||
|
if not token:
|
||||||
|
raise TvdbError("TheTVDB login did not return a token")
|
||||||
|
self._token = token
|
||||||
|
|
||||||
|
def search_series(self, query: str, limit: int = 25) -> list[TvdbSeries]:
|
||||||
|
query = query.strip()
|
||||||
|
if not query:
|
||||||
|
return []
|
||||||
|
payload = self._request(
|
||||||
|
"GET",
|
||||||
|
"/search",
|
||||||
|
params={"query": query, "type": "series", "limit": limit},
|
||||||
|
)
|
||||||
|
results: list[TvdbSeries] = []
|
||||||
|
for item in payload.get("data") or []:
|
||||||
|
item_type = item.get("type") or item.get("primary_type")
|
||||||
|
if item_type and item_type != "series":
|
||||||
|
continue
|
||||||
|
series_id = _parse_series_id(item)
|
||||||
|
if series_id is None:
|
||||||
|
continue
|
||||||
|
year = item.get("year")
|
||||||
|
if year is not None:
|
||||||
|
year = str(year)
|
||||||
|
results.append(
|
||||||
|
TvdbSeries(
|
||||||
|
id=series_id,
|
||||||
|
name=item.get("name") or item.get("title") or f"Series {series_id}",
|
||||||
|
year=year,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
return results
|
||||||
|
|
||||||
|
def get_season_episodes(
|
||||||
|
self,
|
||||||
|
series_id: int,
|
||||||
|
season: int,
|
||||||
|
season_type: str = "default",
|
||||||
|
) -> list[TvdbEpisode]:
|
||||||
|
episodes: list[TvdbEpisode] = []
|
||||||
|
page = 0
|
||||||
|
while True:
|
||||||
|
payload = self._request(
|
||||||
|
"GET",
|
||||||
|
f"/series/{series_id}/episodes/{season_type}",
|
||||||
|
params={"page": page, "season": season},
|
||||||
|
)
|
||||||
|
batch = (payload.get("data") or {}).get("episodes") or []
|
||||||
|
if not batch:
|
||||||
|
break
|
||||||
|
for ep in batch:
|
||||||
|
if ep.get("seasonNumber") != season:
|
||||||
|
continue
|
||||||
|
number = ep.get("number")
|
||||||
|
name = ep.get("name")
|
||||||
|
if number is None or not name:
|
||||||
|
continue
|
||||||
|
episodes.append(
|
||||||
|
TvdbEpisode(
|
||||||
|
number=int(number),
|
||||||
|
season_number=int(season),
|
||||||
|
name=str(name),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
links = payload.get("links") or {}
|
||||||
|
if not links.get("next"):
|
||||||
|
break
|
||||||
|
page += 1
|
||||||
|
episodes.sort(key=lambda e: e.number)
|
||||||
|
return episodes
|
||||||
+20
-3
@@ -36,6 +36,7 @@ from .rule_widgets import (
|
|||||||
CaseRuleWidget,
|
CaseRuleWidget,
|
||||||
NumberingRuleWidget,
|
NumberingRuleWidget,
|
||||||
EpisodeRenumberRuleWidget,
|
EpisodeRenumberRuleWidget,
|
||||||
|
TvdbEpisodeRenumberRuleWidget,
|
||||||
PrefixSuffixRuleWidget,
|
PrefixSuffixRuleWidget,
|
||||||
CsvMappingRuleWidget,
|
CsvMappingRuleWidget,
|
||||||
)
|
)
|
||||||
@@ -85,6 +86,7 @@ class MainWindow(QMainWindow):
|
|||||||
CaseRuleWidget(),
|
CaseRuleWidget(),
|
||||||
NumberingRuleWidget(),
|
NumberingRuleWidget(),
|
||||||
EpisodeRenumberRuleWidget(),
|
EpisodeRenumberRuleWidget(),
|
||||||
|
TvdbEpisodeRenumberRuleWidget(),
|
||||||
PrefixSuffixRuleWidget(),
|
PrefixSuffixRuleWidget(),
|
||||||
CsvMappingRuleWidget(),
|
CsvMappingRuleWidget(),
|
||||||
]
|
]
|
||||||
@@ -96,12 +98,17 @@ class MainWindow(QMainWindow):
|
|||||||
"5. Case",
|
"5. Case",
|
||||||
"6. Numbering",
|
"6. Numbering",
|
||||||
"7. Episode renumber",
|
"7. Episode renumber",
|
||||||
"8. Prefix / Suffix",
|
"8. TheTVDB episode match",
|
||||||
"9. CSV mapping",
|
"9. Prefix / Suffix",
|
||||||
|
"10. CSV mapping",
|
||||||
]
|
]
|
||||||
for title, w in zip(rule_titles, self._rule_widgets):
|
for title, w in zip(rule_titles, self._rule_widgets):
|
||||||
w.enabled_cb.toggled.connect(self._refresh_preview) # always refresh when checkbox toggled
|
w.enabled_cb.toggled.connect(self._refresh_preview) # always refresh when checkbox toggled
|
||||||
w.ruleChanged.connect(self._on_rule_changed) # refresh only when enabled rule’s options change
|
w.ruleChanged.connect(self._on_rule_changed) # refresh only when enabled rule’s options change
|
||||||
|
if hasattr(w, "set_file_names"):
|
||||||
|
w.set_file_names(self._file_names)
|
||||||
|
if hasattr(w, "matchCompleted"):
|
||||||
|
w.matchCompleted.connect(self._refresh_preview)
|
||||||
g = QGroupBox(title)
|
g = QGroupBox(title)
|
||||||
g_layout = QVBoxLayout(g)
|
g_layout = QVBoxLayout(g)
|
||||||
g_layout.setContentsMargins(8, 12, 8, 8)
|
g_layout.setContentsMargins(8, 12, 8, 8)
|
||||||
@@ -206,7 +213,13 @@ class MainWindow(QMainWindow):
|
|||||||
self.preview_table.setSortingEnabled(False)
|
self.preview_table.setSortingEnabled(False)
|
||||||
self.preview_table.setRowCount(0)
|
self.preview_table.setRowCount(0)
|
||||||
self.preview_status.setText("Add a folder to see files.")
|
self.preview_status.setText("Add a folder to see files.")
|
||||||
|
for w in self._rule_widgets:
|
||||||
|
if hasattr(w, "set_file_names"):
|
||||||
|
w.set_file_names([])
|
||||||
return
|
return
|
||||||
|
for w in self._rule_widgets:
|
||||||
|
if hasattr(w, "set_file_names"):
|
||||||
|
w.set_file_names(self._file_names)
|
||||||
# Preserve sort and selection so checking a rule doesn’t reorder or clear selection
|
# Preserve sort and selection so checking a rule doesn’t reorder or clear selection
|
||||||
header = self.preview_table.horizontalHeader()
|
header = self.preview_table.horizontalHeader()
|
||||||
sort_section = header.sortIndicatorSection()
|
sort_section = header.sortIndicatorSection()
|
||||||
@@ -224,7 +237,11 @@ class MainWindow(QMainWindow):
|
|||||||
self.preview_table.setItem(row, 1, QTableWidgetItem(orig)) # show original until selected
|
self.preview_table.setItem(row, 1, QTableWidgetItem(orig)) # show original until selected
|
||||||
self.preview_table.setItem(row, 2, QTableWidgetItem(self._ext_for(orig)))
|
self.preview_table.setItem(row, 2, QTableWidgetItem(self._ext_for(orig)))
|
||||||
self.preview_table.setSortingEnabled(True)
|
self.preview_table.setSortingEnabled(True)
|
||||||
header.setSortIndicator(sort_section, sort_order)
|
# Actually sort the table (setSortIndicator alone doesn’t); default to File type so episode renumber doesn’t skip
|
||||||
|
if sort_section < 0:
|
||||||
|
sort_section = 2
|
||||||
|
sort_order = Qt.SortOrder.AscendingOrder
|
||||||
|
self.preview_table.sortByColumn(sort_section, sort_order)
|
||||||
|
|
||||||
# Numbering uses the table’s current (sorted) order, not load order
|
# Numbering uses the table’s current (sorted) order, not load order
|
||||||
order = [self.preview_table.item(r, 0).text() for r in range(self.preview_table.rowCount())]
|
order = [self.preview_table.item(r, 0).text() for r in range(self.preview_table.rowCount())]
|
||||||
|
|||||||
+231
-2
@@ -15,8 +15,9 @@ from PyQt6.QtWidgets import (
|
|||||||
QStackedWidget,
|
QStackedWidget,
|
||||||
QPushButton,
|
QPushButton,
|
||||||
QFileDialog,
|
QFileDialog,
|
||||||
|
QMessageBox,
|
||||||
)
|
)
|
||||||
from PyQt6.QtCore import pyqtSignal
|
from PyQt6.QtCore import pyqtSignal, QThread
|
||||||
|
|
||||||
from engine.rules import (
|
from engine.rules import (
|
||||||
ReplaceRule,
|
ReplaceRule,
|
||||||
@@ -25,10 +26,13 @@ from engine.rules import (
|
|||||||
CaseRule,
|
CaseRule,
|
||||||
NumberingRule,
|
NumberingRule,
|
||||||
EpisodeRenumberRule,
|
EpisodeRenumberRule,
|
||||||
|
TvdbEpisodeRenumberRule,
|
||||||
RegexRule,
|
RegexRule,
|
||||||
PrefixSuffixRule,
|
PrefixSuffixRule,
|
||||||
CsvMappingRule,
|
CsvMappingRule,
|
||||||
)
|
)
|
||||||
|
from engine.tvdb_client import TvdbClient, TvdbError, TVDB_API_KEY, SEASON_TYPE_CHOICES
|
||||||
|
from engine.episode_match import match_filenames_to_episodes
|
||||||
|
|
||||||
|
|
||||||
class ReplaceRuleWidget(QWidget):
|
class ReplaceRuleWidget(QWidget):
|
||||||
@@ -285,7 +289,10 @@ class EpisodeRenumberRuleWidget(QWidget):
|
|||||||
layout.addRow("First episode number:", self.start)
|
layout.addRow("First episode number:", self.start)
|
||||||
layout.addRow("Step:", self.step)
|
layout.addRow("Step:", self.step)
|
||||||
layout.addRow("Zero-pad width:", self.padding)
|
layout.addRow("Zero-pad width:", self.padding)
|
||||||
info = QLabel("Matches patterns like S01E05 - Title or Show 1x03 - Title. Episode number is replaced; title is kept.")
|
info = QLabel(
|
||||||
|
"Matches S01E05 - Title (single) or S01E05-E06 - Title (two-part). "
|
||||||
|
"Ranges keep their length: S01E01-E02, S01E03-E04, … Order follows the file list / table sort."
|
||||||
|
)
|
||||||
info.setWordWrap(True)
|
info.setWordWrap(True)
|
||||||
layout.addRow(info)
|
layout.addRow(info)
|
||||||
|
|
||||||
@@ -302,6 +309,228 @@ class EpisodeRenumberRuleWidget(QWidget):
|
|||||||
return r
|
return r
|
||||||
|
|
||||||
|
|
||||||
|
class _TvdbSearchWorker(QThread):
|
||||||
|
finished = pyqtSignal(list)
|
||||||
|
failed = pyqtSignal(str)
|
||||||
|
|
||||||
|
def __init__(self, query: str):
|
||||||
|
super().__init__()
|
||||||
|
self.query = query
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
try:
|
||||||
|
client = TvdbClient(TVDB_API_KEY)
|
||||||
|
results = client.search_series(self.query)
|
||||||
|
self.finished.emit(results)
|
||||||
|
except TvdbError as e:
|
||||||
|
self.failed.emit(str(e))
|
||||||
|
except Exception as e:
|
||||||
|
self.failed.emit(str(e))
|
||||||
|
|
||||||
|
|
||||||
|
class _TvdbMatchWorker(QThread):
|
||||||
|
finished = pyqtSignal(dict, list, list)
|
||||||
|
failed = pyqtSignal(str)
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
series_id: int,
|
||||||
|
season: int,
|
||||||
|
season_type: str,
|
||||||
|
filenames: list[str],
|
||||||
|
):
|
||||||
|
super().__init__()
|
||||||
|
self.series_id = series_id
|
||||||
|
self.season = season
|
||||||
|
self.season_type = season_type
|
||||||
|
self.filenames = filenames
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
try:
|
||||||
|
client = TvdbClient(TVDB_API_KEY)
|
||||||
|
episodes = client.get_season_episodes(
|
||||||
|
self.series_id,
|
||||||
|
self.season,
|
||||||
|
season_type=self.season_type,
|
||||||
|
)
|
||||||
|
if not episodes:
|
||||||
|
raise TvdbError(f"No episodes found for season {self.season}")
|
||||||
|
mapping, unmatched, notes = match_filenames_to_episodes(self.filenames, episodes)
|
||||||
|
self.finished.emit(mapping, unmatched, notes)
|
||||||
|
except TvdbError as e:
|
||||||
|
self.failed.emit(str(e))
|
||||||
|
except Exception as e:
|
||||||
|
self.failed.emit(str(e))
|
||||||
|
|
||||||
|
|
||||||
|
class TvdbEpisodeRenumberRuleWidget(QWidget):
|
||||||
|
ruleChanged = pyqtSignal()
|
||||||
|
matchCompleted = pyqtSignal()
|
||||||
|
|
||||||
|
def __init__(self, parent=None):
|
||||||
|
super().__init__(parent)
|
||||||
|
self._file_names: list[str] = []
|
||||||
|
self._episode_mapping: dict[str, int] = {}
|
||||||
|
self._search_results: list = []
|
||||||
|
self._search_worker: _TvdbSearchWorker | None = None
|
||||||
|
self._match_worker: _TvdbMatchWorker | None = None
|
||||||
|
|
||||||
|
layout = QFormLayout(self)
|
||||||
|
self.enabled_cb = QCheckBox("Use this rule")
|
||||||
|
self.enabled_cb.setChecked(False)
|
||||||
|
self.enabled_cb.toggled.connect(self._emit)
|
||||||
|
layout.addRow(self.enabled_cb)
|
||||||
|
|
||||||
|
layout.addRow("Source:", QLabel("TheTVDB.com"))
|
||||||
|
|
||||||
|
search_row = QHBoxLayout()
|
||||||
|
self.search_query = QLineEdit()
|
||||||
|
self.search_query.setPlaceholderText("Show name to search")
|
||||||
|
self.search_query.returnPressed.connect(self._search_series)
|
||||||
|
search_btn = QPushButton("Search")
|
||||||
|
search_btn.clicked.connect(self._search_series)
|
||||||
|
search_row.addWidget(self.search_query, 1)
|
||||||
|
search_row.addWidget(search_btn)
|
||||||
|
layout.addRow("Show:", search_row)
|
||||||
|
|
||||||
|
self.series_combo = QComboBox()
|
||||||
|
self.series_combo.setEnabled(False)
|
||||||
|
self.series_combo.currentIndexChanged.connect(self._emit)
|
||||||
|
layout.addRow("Pick show:", self.series_combo)
|
||||||
|
|
||||||
|
self.order_type = QComboBox()
|
||||||
|
for label, value in SEASON_TYPE_CHOICES:
|
||||||
|
self.order_type.addItem(label, value)
|
||||||
|
self.order_type.currentIndexChanged.connect(self._emit)
|
||||||
|
layout.addRow("Episode order:", self.order_type)
|
||||||
|
|
||||||
|
self.season = QSpinBox()
|
||||||
|
self.season.setMinimum(0)
|
||||||
|
self.season.setMaximum(99)
|
||||||
|
self.season.setValue(1)
|
||||||
|
self.season.valueChanged.connect(self._emit)
|
||||||
|
layout.addRow("Season:", self.season)
|
||||||
|
|
||||||
|
self.padding = QSpinBox()
|
||||||
|
self.padding.setMinimum(1)
|
||||||
|
self.padding.setMaximum(3)
|
||||||
|
self.padding.setValue(2)
|
||||||
|
self.padding.valueChanged.connect(self._emit)
|
||||||
|
layout.addRow("Zero-pad width:", self.padding)
|
||||||
|
|
||||||
|
self.match_btn = QPushButton("Match titles from file list")
|
||||||
|
self.match_btn.clicked.connect(self._match_titles)
|
||||||
|
layout.addRow(self.match_btn)
|
||||||
|
|
||||||
|
self.status = QLabel("Search for a show, choose episode order and season, then match titles.")
|
||||||
|
self.status.setWordWrap(True)
|
||||||
|
layout.addRow(self.status)
|
||||||
|
|
||||||
|
info = QLabel(
|
||||||
|
"Reads episode titles from filenames like S01E05 - Episode Title. "
|
||||||
|
"Fetches the chosen TheTVDB episode order for that season and rewrites SxxExx numbers to match."
|
||||||
|
)
|
||||||
|
info.setWordWrap(True)
|
||||||
|
layout.addRow(info)
|
||||||
|
|
||||||
|
def set_file_names(self, names: list[str]) -> None:
|
||||||
|
self._file_names = list(names)
|
||||||
|
|
||||||
|
def _order_label(self) -> str:
|
||||||
|
return self.order_type.currentText()
|
||||||
|
|
||||||
|
def _order_value(self) -> str:
|
||||||
|
value = self.order_type.currentData()
|
||||||
|
return value if value else "default"
|
||||||
|
|
||||||
|
def _emit(self):
|
||||||
|
self.ruleChanged.emit()
|
||||||
|
|
||||||
|
def _search_series(self):
|
||||||
|
query = self.search_query.text().strip()
|
||||||
|
if not query:
|
||||||
|
QMessageBox.warning(self, "Search", "Enter a show name to search.")
|
||||||
|
return
|
||||||
|
self.match_btn.setEnabled(False)
|
||||||
|
self.series_combo.setEnabled(False)
|
||||||
|
self.status.setText("Searching TheTVDB…")
|
||||||
|
self._search_worker = _TvdbSearchWorker(query)
|
||||||
|
self._search_worker.finished.connect(self._on_search_finished)
|
||||||
|
self._search_worker.failed.connect(self._on_search_failed)
|
||||||
|
self._search_worker.start()
|
||||||
|
|
||||||
|
def _on_search_finished(self, results):
|
||||||
|
self._search_results = results
|
||||||
|
self.series_combo.clear()
|
||||||
|
if not results:
|
||||||
|
self.status.setText("No series found. Try a different search.")
|
||||||
|
self.match_btn.setEnabled(True)
|
||||||
|
return
|
||||||
|
for s in results:
|
||||||
|
label = s.name
|
||||||
|
if s.year:
|
||||||
|
label = f"{label} ({s.year})"
|
||||||
|
self.series_combo.addItem(label, s.id)
|
||||||
|
self.series_combo.setEnabled(True)
|
||||||
|
self.match_btn.setEnabled(True)
|
||||||
|
self.status.setText(f"Found {len(results)} series. Pick one and match titles.")
|
||||||
|
self._emit()
|
||||||
|
|
||||||
|
def _on_search_failed(self, message: str):
|
||||||
|
self.match_btn.setEnabled(True)
|
||||||
|
self.series_combo.setEnabled(self.series_combo.count() > 0)
|
||||||
|
self.status.setText(f"Search failed: {message}")
|
||||||
|
|
||||||
|
def _match_titles(self):
|
||||||
|
if self.series_combo.count() == 0:
|
||||||
|
QMessageBox.warning(self, "Match", "Search and select a show first.")
|
||||||
|
return
|
||||||
|
if not self._file_names:
|
||||||
|
QMessageBox.warning(self, "Match", "Load a folder with files first.")
|
||||||
|
return
|
||||||
|
series_id = self.series_combo.currentData()
|
||||||
|
if series_id is None:
|
||||||
|
return
|
||||||
|
self.match_btn.setEnabled(False)
|
||||||
|
self.status.setText(f"Fetching episodes ({self._order_label()}) and matching titles…")
|
||||||
|
self._match_worker = _TvdbMatchWorker(
|
||||||
|
int(series_id),
|
||||||
|
self.season.value(),
|
||||||
|
self._order_value(),
|
||||||
|
self._file_names,
|
||||||
|
)
|
||||||
|
self._match_worker.finished.connect(self._on_match_finished)
|
||||||
|
self._match_worker.failed.connect(self._on_match_failed)
|
||||||
|
self._match_worker.start()
|
||||||
|
|
||||||
|
def _on_match_finished(self, mapping: dict, unmatched: list, notes: list):
|
||||||
|
self._episode_mapping = mapping
|
||||||
|
self.match_btn.setEnabled(True)
|
||||||
|
matched = len(mapping)
|
||||||
|
total = len(self._file_names)
|
||||||
|
msg = (
|
||||||
|
f"Matched {matched} of {total} file(s) for season {self.season.value()} "
|
||||||
|
f"({self._order_label()})."
|
||||||
|
)
|
||||||
|
if unmatched:
|
||||||
|
msg += f" {len(unmatched)} file(s) unmatched."
|
||||||
|
self.status.setText(msg)
|
||||||
|
self.matchCompleted.emit()
|
||||||
|
self._emit()
|
||||||
|
|
||||||
|
def _on_match_failed(self, message: str):
|
||||||
|
self.match_btn.setEnabled(True)
|
||||||
|
self.status.setText(f"Match failed: {message}")
|
||||||
|
|
||||||
|
def getRule(self) -> TvdbEpisodeRenumberRule:
|
||||||
|
r = TvdbEpisodeRenumberRule(
|
||||||
|
episode_mapping=dict(self._episode_mapping),
|
||||||
|
padding=self.padding.value(),
|
||||||
|
)
|
||||||
|
r.enabled = self.enabled_cb.isChecked()
|
||||||
|
return r
|
||||||
|
|
||||||
|
|
||||||
class PrefixSuffixRuleWidget(QWidget):
|
class PrefixSuffixRuleWidget(QWidget):
|
||||||
ruleChanged = pyqtSignal()
|
ruleChanged = pyqtSignal()
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
HSRename release stamp 1.0.4
|
||||||
|
TheTVDB search hotfix: accept TheTVDB v4 search ids like series-76320.
|
||||||
|
Built for Gear Lever update testing.
|
||||||
Executable
+84
@@ -0,0 +1,84 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Push tag to Gitea and publish HSRename.AppImage as a release asset.
|
||||||
|
# Usage:
|
||||||
|
# GITEA_TOKEN=your_token ./release_gitea.sh
|
||||||
|
# Optional: ./release_gitea.sh --build (rebuild AppImage first)
|
||||||
|
#
|
||||||
|
# Requires: curl, git, and network access to your Gitea instance.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
|
GITEA_HOST="${GITEA_HOST:-https://git.hisora.dev}"
|
||||||
|
GITEA_OWNER="${GITEA_OWNER:-Dawnsorrow}"
|
||||||
|
if remote_url="$(git remote get-url origin 2>/dev/null)"; then
|
||||||
|
GITEA_REPO="$(basename "${remote_url%.git}")"
|
||||||
|
elif [[ -z "${GITEA_REPO:-}" ]]; then
|
||||||
|
GITEA_REPO="HS-Rename"
|
||||||
|
fi
|
||||||
|
GITEA_REPO="${GITEA_REPO:-HS-Rename}"
|
||||||
|
APP_IMAGE="HSRename.AppImage"
|
||||||
|
|
||||||
|
VERSION="$(tr -d '[:space:]' < VERSION)"
|
||||||
|
TAG="v${VERSION}"
|
||||||
|
|
||||||
|
if [[ "${1:-}" == "--build" ]]; then
|
||||||
|
export PATH="/tmp:${PATH}"
|
||||||
|
if ! command -v appimagetool &>/dev/null && [[ -x /tmp/appimagetool ]]; then
|
||||||
|
export PATH="/tmp:${PATH}"
|
||||||
|
fi
|
||||||
|
./build_appimage.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ! -f "$APP_IMAGE" ]]; then
|
||||||
|
echo "Missing $APP_IMAGE. Run ./build_appimage.sh or ./release_gitea.sh --build"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! git rev-parse "$TAG" >/dev/null 2>&1; then
|
||||||
|
echo "Tag $TAG not found. Create it with: git tag $TAG"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "=== Pushing main and tag $TAG ==="
|
||||||
|
git push origin main
|
||||||
|
git push origin "$TAG"
|
||||||
|
|
||||||
|
if [[ -z "${GITEA_TOKEN:-}" ]]; then
|
||||||
|
echo ""
|
||||||
|
echo "Code and tag pushed. To upload the AppImage, set GITEA_TOKEN and re-run:"
|
||||||
|
echo " GITEA_TOKEN=... ./release_gitea.sh"
|
||||||
|
echo ""
|
||||||
|
echo "Or create the release manually on Gitea and attach $APP_IMAGE."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
API="${GITEA_HOST}/api/v1/repos/${GITEA_OWNER}/${GITEA_REPO}/releases"
|
||||||
|
NOTES="$(cat <<EOF
|
||||||
|
## HSRename ${TAG}
|
||||||
|
|
||||||
|
See repository history for changes in this release.
|
||||||
|
|
||||||
|
Gear Lever update URL:
|
||||||
|
\`${GITEA_HOST}/${GITEA_OWNER}/${GITEA_REPO}/releases/download/${TAG}/${APP_IMAGE}\`
|
||||||
|
EOF
|
||||||
|
)"
|
||||||
|
|
||||||
|
echo "=== Creating Gitea release $TAG on ${GITEA_OWNER}/${GITEA_REPO} ==="
|
||||||
|
RELEASE_JSON="$(curl -fsS -X POST "$API" \
|
||||||
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
-F "tag_name=${TAG}" \
|
||||||
|
-F "name=${TAG}" \
|
||||||
|
-F "body=${NOTES}")"
|
||||||
|
RELEASE_ID="$(python3 -c "import json,sys; print(json.loads(sys.argv[1])['id'])" "$RELEASE_JSON")"
|
||||||
|
|
||||||
|
echo "=== Uploading ${APP_IMAGE} (${RELEASE_ID}) ==="
|
||||||
|
curl -fsS --max-time 300 -X POST \
|
||||||
|
"${API}/${RELEASE_ID}/assets?name=${APP_IMAGE}" \
|
||||||
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
|
-F "attachment=@${APP_IMAGE}" >/dev/null
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "Release published:"
|
||||||
|
echo " ${GITEA_HOST}/${GITEA_OWNER}/${GITEA_REPO}/releases/tag/${TAG}"
|
||||||
|
echo " ${GITEA_HOST}/${GITEA_OWNER}/${GITEA_REPO}/releases/download/${TAG}/${APP_IMAGE}"
|
||||||
Reference in New Issue
Block a user