2023-03-09 19:44:57 +00:00
|
|
|
from typing import Optional, List, Tuple
|
2023-02-25 21:16:32 +00:00
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
from ..utils import shared
|
|
|
|
from .parents import DatabaseObject
|
|
|
|
|
|
|
|
|
|
|
|
class Target(DatabaseObject):
|
|
|
|
"""
|
|
|
|
create somehow like that
|
|
|
|
```python
|
|
|
|
# I know path is pointless, and I will change that (don't worry about backwards compatibility there)
|
|
|
|
Target(file="song.mp3", path="~/Music/genre/artist/album")
|
|
|
|
```
|
|
|
|
"""
|
|
|
|
|
2023-03-09 19:44:57 +00:00
|
|
|
SIMPLE_ATTRIBUTES = ("_file", "_path")
|
2023-03-13 13:33:17 +00:00
|
|
|
COLLECTION_ATTRIBUTES = tuple()
|
2023-03-09 19:44:57 +00:00
|
|
|
|
2023-02-25 21:16:32 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
file: str = None,
|
|
|
|
path: str = None,
|
|
|
|
_id: str = None,
|
|
|
|
dynamic: bool = False,
|
|
|
|
relative_to_music_dir: bool = False
|
|
|
|
) -> None:
|
|
|
|
super().__init__(_id=_id, dynamic=dynamic)
|
|
|
|
self._file: Path = Path(file)
|
2023-03-09 19:44:57 +00:00
|
|
|
self._path: Path = Path(path) if relative_to_music_dir else Path(path)
|
2023-02-25 21:16:32 +00:00
|
|
|
|
|
|
|
self.is_relative_to_music_dir: bool = relative_to_music_dir
|
|
|
|
|
|
|
|
@property
|
|
|
|
def file_path(self) -> Path:
|
|
|
|
return Path(self._path, self._file)
|
2023-03-09 19:44:57 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def indexing_values(self) -> List[Tuple[str, object]]:
|
|
|
|
return [('filepath', self.file_path)]
|