2 # Copyright (c) 2010, Alex Munroe
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are met:
8 # * Redistributions of source code must retain the above copyright notice,
9 # this list of conditions, and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above copyright notice,
11 # this list of conditions, and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
13 # * Neither the name of the author of this software nor the name of
14 # contributors to this software may be used to endorse or promote products
15 # derived from this software without specific prior written consent.
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
31 import supybot
.utils
as utils
32 from supybot
.commands
import *
33 import supybot
.plugins
as plugins
34 import supybot
.ircutils
as ircutils
35 import supybot
.callbacks
as callbacks
39 from BeautifulSoup
import BeautifulSoup
, NavigableString
42 class WWWJDIC(callbacks
.Plugin
):
43 """Add the help for "@plugin help WWWJDIC" here
44 This should describe *how* to use this plugin."""
47 def jdic(self
, irc
, msg
, args
, thing
):
50 Looks up <thing> in the EDICT Japanese dictionary.
51 To use roomaji, prefix with @ for hiragana or # for katakana."""
53 # Fix encoding. Sigh. Stolen from Pokedex.plugin.
54 if not isinstance(thing
, unicode):
57 thing
= ascii_thing
.decode('utf8')
58 except UnicodeDecodeError:
59 thing
= ascii_thing
.decode('latin1')
62 # Unnngh this is horrendous. urllib doesn't understand unicode at all;
63 # manually encode as bytes and then urlencode
64 url_thing
= urllib
.quote(thing
.encode('utf8'))
67 # 1 = edict; Z = raw results; U = utf8 input; R = exact + common
68 res
= urllib2
.urlopen(
69 u
"http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1ZUR"
73 # Even the raw results come wrapped in minimal HTML. This sucks.
74 # They're just in this form though:
78 # So grab everything from that paragraph that isn't a tag (<br>) or
79 # blank space and spit it back out.
80 soup
= BeautifulSoup(res
)
83 if not isinstance(thing
, NavigableString
):
86 # Everything ends with a newline, bleh!
87 entry
= unicode(thing
).strip()
91 self
._reply(irc
, entry
)
93 # Don't send back more than three; that's probably plenty
98 jdic
= wrap(jdic
, [rest('something')])
101 def _reply(self
, irc
, response
):
102 """Wraps irc.reply() to do some Unicode decoding.
104 Also stolen from Pokedex.plugin.
106 if isinstance(response
, str):
109 irc
.reply(response
.encode('utf8'))
117 # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: