[2chan] add thread extractor
This commit is contained in:
91
gallery_dl/extractor/2chan.py
Normal file
91
gallery_dl/extractor/2chan.py
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright 2017 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.
|
||||||
|
|
||||||
|
"""Extract images from https://www.2chan.net/"""
|
||||||
|
|
||||||
|
from .common import Extractor, Message
|
||||||
|
from .. import text
|
||||||
|
|
||||||
|
|
||||||
|
class FutabaThreadExtractor(Extractor):
|
||||||
|
"""Extractor for images from threads on www.2chan.net"""
|
||||||
|
category = "2chan"
|
||||||
|
subcategory = "thread"
|
||||||
|
directory_fmt = ["{category}", "{board-name}", "{thread}"]
|
||||||
|
pattern = [r"(?:https?://)?(([^.]+)\.2chan\.net/([^/]+)/res/(\d+))"]
|
||||||
|
urlfmt = "https://{server}.2chan.net/{board}/src/{filename}"
|
||||||
|
test = [("http://dec.2chan.net/70/res/947.htm", {
|
||||||
|
"url": "c5c12b80b290e224b6758507b3bb952044f4595b",
|
||||||
|
"keyword": "e1295c0a96f733898e92742bcc1a4c4b320e3748",
|
||||||
|
})]
|
||||||
|
|
||||||
|
def __init__(self, match):
|
||||||
|
Extractor.__init__(self)
|
||||||
|
url, self.server, self.board, self.thread = match.groups()
|
||||||
|
self.url = "https://" + url + ".htm"
|
||||||
|
|
||||||
|
def items(self):
|
||||||
|
page = self.request(self.url).text
|
||||||
|
data = self.get_metadata(page)
|
||||||
|
yield Message.Version, 1
|
||||||
|
yield Message.Directory, data
|
||||||
|
for post in self.posts(page):
|
||||||
|
if "filename" not in post:
|
||||||
|
continue
|
||||||
|
post.update(data)
|
||||||
|
url = self.urlfmt.format_map(post)
|
||||||
|
yield Message.Url, url, post
|
||||||
|
|
||||||
|
def get_metadata(self, page):
|
||||||
|
"""Collect metadata for extractor-job"""
|
||||||
|
title = text.extract(page, "<title>", "</title>")[0]
|
||||||
|
title, _, boardname = title.rpartition(" - ")
|
||||||
|
return {
|
||||||
|
"server": self.server,
|
||||||
|
"title": title,
|
||||||
|
"board": self.board,
|
||||||
|
"board-name": boardname[:-4],
|
||||||
|
"thread": self.thread,
|
||||||
|
}
|
||||||
|
|
||||||
|
def posts(self, page):
|
||||||
|
"""Build a list of all post-objects"""
|
||||||
|
page = text.extract(
|
||||||
|
page, '<div class="thre">', '<div style="clear:left"></div>')[0]
|
||||||
|
return [
|
||||||
|
self.parse(post)
|
||||||
|
for post in page.split('<table border=0>')
|
||||||
|
]
|
||||||
|
|
||||||
|
def parse(self, post):
|
||||||
|
"""Build post-object by extracting data from an HTML post"""
|
||||||
|
data = self._extract_post(post)
|
||||||
|
if '<a href="/' in post:
|
||||||
|
self._extract_image(post, data)
|
||||||
|
data["tim"], _, data["extension"] = data["filename"].partition(".")
|
||||||
|
data["time"] = data["tim"][:-3]
|
||||||
|
data["ext"] = "." + data["extension"]
|
||||||
|
return data
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _extract_post(post):
|
||||||
|
return text.extract_all(post, (
|
||||||
|
("no" , 'name="', '"'),
|
||||||
|
("post" , '<b>', '</b>'),
|
||||||
|
("name" , '<b>', ' </b>'),
|
||||||
|
("now" , '</font> ', ' '),
|
||||||
|
(None , '<blockquote', ''),
|
||||||
|
("com" , '>', '</blockquote>'),
|
||||||
|
))[0]
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def _extract_image(post, data):
|
||||||
|
text.extract_all(post, (
|
||||||
|
("filename", '_blank">', '<'),
|
||||||
|
("fsize" , '(', ' '),
|
||||||
|
), 0, data)
|
||||||
@@ -11,6 +11,7 @@ import importlib
|
|||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
"pixiv",
|
"pixiv",
|
||||||
|
"2chan",
|
||||||
"3dbooru",
|
"3dbooru",
|
||||||
"4chan",
|
"4chan",
|
||||||
"4plebs",
|
"4plebs",
|
||||||
|
|||||||
@@ -6,14 +6,14 @@
|
|||||||
# it under the terms of the GNU General Public License version 2 as
|
# it under the terms of the GNU General Public License version 2 as
|
||||||
# published by the Free Software Foundation.
|
# published by the Free Software Foundation.
|
||||||
|
|
||||||
"""Base classes for extractors for different Futaba Channel boards"""
|
"""Base classes for extractors for different Futaba Channel-like boards"""
|
||||||
|
|
||||||
from .common import Extractor, Message
|
from .common import Extractor, Message
|
||||||
from .. import text
|
from .. import text
|
||||||
|
|
||||||
|
|
||||||
class ChanThreadExtractor(Extractor):
|
class ChanThreadExtractor(Extractor):
|
||||||
"""Base class for extractors for Futaba Channel boards"""
|
"""Base class for extractors for Futaba Channel-like boards"""
|
||||||
category = "chan"
|
category = "chan"
|
||||||
subcategory = "thread"
|
subcategory = "thread"
|
||||||
directory_fmt = ["{category}", "{board}-{thread}"]
|
directory_fmt = ["{category}", "{board}-{thread}"]
|
||||||
|
|||||||
Reference in New Issue
Block a user