X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=local_photos_mirror_renderer.py;h=b68df68096e3fa0b7ce0dd9b94bb6bd9ccc5be3e;hb=addd4980077f6e3857c5c035b49784dc3ceca49a;hp=287bdd697ecdfad96c93e47aa12619463cee54f9;hpb=73e4d75ceabe5546f3966cfdcd1f705c77be17f7;p=kiosk.git diff --git a/local_photos_mirror_renderer.py b/local_photos_mirror_renderer.py index 287bdd6..b68df68 100644 --- a/local_photos_mirror_renderer.py +++ b/local_photos_mirror_renderer.py @@ -9,14 +9,14 @@ import file_writer import renderer -class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): +class local_photos_mirror_renderer(renderer.abstaining_renderer): """A renderer that uses a local mirror of Google photos""" - album_root_directory = "/var/www/kiosk/pages/images/gphotos/albums" + album_root_directory = "/var/www/html/kiosk/images/gphotos/albums" album_whitelist = frozenset( [ - "8-Mile Lake Hike", + "Autumn at Kubota", "Bangkok and Phuket, 2003", "Barn", "Blue Angels... Seafair", @@ -36,16 +36,20 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): "Newer Alex Photos", "Ohme Gardens", "Olympic Sculpture Park", + "Portland, ME 2021", "Prague and Munich 2019", "Random", - "Scott and Lynn", "SFO 2014", + "Scott and Lynn", + "Sculpture Place", "Skiing with Alex", "Sonoma", "Trip to California, '16", "Trip to San Francisco", "Trip to East Coast '16", + "Turkey 2022", "Tuscany 2008", + "WA Roadtrip, 2021", "Yosemite 2010", "Zoo", ] @@ -62,7 +66,7 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): ) def __init__(self, name_to_timeout_dict: Dict[str, int]) -> None: - super(local_photos_mirror_renderer, self).__init__(name_to_timeout_dict, False) + super().__init__(name_to_timeout_dict) self.candidate_photos: Set[str] = set() def debug_prefix(self) -> str: @@ -94,7 +98,7 @@ class local_photos_mirror_renderer(renderer.debuggable_abstaining_renderer): if extension in self.extension_whitelist: photo_path = os.path.join(root, filename) photo_url = photo_path.replace( - "/var/www/", "http://kiosk.house/", 1 + "/var/www/html", "http://kiosk.house/", 1 ) self.candidate_photos.add(photo_url) return True