OSDN Git Service

Uri matching looser.
[fukui-no-namari/fukui-no-namari.git] / src / FukuiNoNamari / BbsType / bbs_type_2ch.py
1 # Copyright (C) 2006 by Aiwota Programmer
2 # aiwotaprog@tetteke.tk
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 import re
19 import codecs
20
21 from bbs_type_exception import BbsTypeError
22 from bbs_type_base import BaseType
23
24 # default name for morningcoffee
25 moco_name = u'\u540d\u7121\u3057\u52df\u96c6\u4e2d\u3002\u3002\u3002'
26
27 _base_reg_expr = re.compile("http://(?P<host>[^./]+\.2ch\.net)/(?P<board>[^/]+)(?:/[^/]*){0,1}$")
28 _cgi_reg_expr = re.compile("http://(?P<host>[^./]+\.2ch\.net)/test/read.cgi/(?P<board>[^/]+)/(?P<thread>[^/]+)/.*")
29
30
31 class Type2ch(BaseType):
32     bbs_type = "2ch"
33     _base_reg = _base_reg_expr
34     _cgi_reg = _cgi_reg_expr
35
36     def is_same_board(self, another):
37         return self.bbs_type == another.bbs_type \
38                and self.board == another.board
39
40     def set_extra_post(self, post_dict):
41         post_dict["hana"] = "mogera"
42
43         if self.board == "morningcoffee":
44             if "FROM" not in post_dict or not post_dict["FROM"]:
45                 post_dict["FROM"] = moco_name.encode("cp932", "replace")
46
47         return post_dict
48
49     def get_board_dir_path(self):
50         """Returns board dir path from logs dir downward, not full path"""
51
52         return self.bbs_type + "/" + self.board