1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 02:32:33 +01:00

base class for futaba-chan boards with api

This commit is contained in:
Mike Fährmann 2015-06-29 23:09:35 +02:00
parent af3b44762c
commit c8e5b2e89e

View File

@ -0,0 +1,47 @@
# -*- coding: utf-8 -*-
# Copyright 2015 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Base classes for extractors for different Futaba Channel boards"""
from .common import SequentialExtractor, Message
class ChanExtractor(SequentialExtractor):
api_url = ""
file_url = ""
def __init__(self, config, category, board, thread):
SequentialExtractor.__init__(self, config)
self.metadata = {
"category": category,
"board": board,
"thread": thread,
}
def items(self):
yield Message.Version, 1
posts = self.request(self.api_url.format(**self.metadata)).json()["posts"]
self.metadata["title"] = self.get_thread_title(posts[0])
yield Message.Directory, self.metadata
for post in posts:
if "filename" not in post:
continue
post.update(self.metadata)
yield Message.Url, self.file_url.format(**post), post
@staticmethod
def get_thread_title(post):
"""Return thread title from first post"""
if "sub" in post:
return post["sub"]
com = post["com"]
pos = com.find("<br>")
if pos == -1:
return com
return com[:min(pos, 50)]