2003-08-20 11:34:15 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-08-20 11:34:15 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2004-01-23 15:20:57 +01:00
|
|
|
Amazon module, to use Amazon's Web Services.
|
2003-08-20 11:34:15 +02:00
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
2004-04-28 10:45:00 +02:00
|
|
|
__author__ = "James Vega (jamessan) <jamessan@users.sf.net>"
|
2003-11-25 09:23:47 +01:00
|
|
|
|
2003-12-02 08:38:18 +01:00
|
|
|
import getopt
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-08-20 11:34:15 +02:00
|
|
|
|
|
|
|
import amazon
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.registry as registry
|
2004-01-20 07:27:17 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.callbacks as callbacks
|
2003-08-20 11:34:15 +02:00
|
|
|
|
|
|
|
|
2004-01-30 00:58:27 +01:00
|
|
|
def configure(advanced):
|
2004-07-25 20:24:51 +02:00
|
|
|
from supybot.questions import output, expect, anything, something, yn
|
2004-01-31 23:24:43 +01:00
|
|
|
output('To use Amazon\'s Web Services, you must have a license key.')
|
|
|
|
if yn('Do you have a license key?'):
|
2003-08-20 11:34:15 +02:00
|
|
|
key = anything('What is it?')
|
2003-08-20 11:35:23 +02:00
|
|
|
|
2004-01-28 23:19:25 +01:00
|
|
|
conf.registerPlugin('Amazon', True)
|
2004-01-20 07:27:17 +01:00
|
|
|
conf.supybot.plugins.Amazon.licenseKey.set(key)
|
2003-08-20 11:34:15 +02:00
|
|
|
else:
|
2004-01-31 23:24:43 +01:00
|
|
|
output("""You'll need to get a key before you can use this plugin.
|
|
|
|
You can apply for a key at
|
|
|
|
http://www.amazon.com/webservices/""")
|
2003-08-20 11:34:15 +02:00
|
|
|
|
2004-01-20 07:27:17 +01:00
|
|
|
class LicenseKey(registry.String):
|
|
|
|
def set(self, s):
|
|
|
|
# In case we decide we need to recover
|
2004-07-31 10:43:58 +02:00
|
|
|
original = getattr(self, 'value', self._default)
|
2004-01-20 07:27:17 +01:00
|
|
|
registry.String.set(self, s)
|
|
|
|
if self.value:
|
|
|
|
amazon.setLicense(self.value)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-20 07:27:17 +01:00
|
|
|
conf.registerPlugin('Amazon')
|
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Amazon, 'bold',
|
|
|
|
registry.Boolean(True, """Determines whether the results are bolded."""))
|
|
|
|
conf.registerGlobalValue(conf.supybot.plugins.Amazon, 'licenseKey',
|
|
|
|
LicenseKey('', """Sets the license key for using Amazon Web Services.
|
2004-02-14 08:17:59 +01:00
|
|
|
Must be set before any other commands in the plugin are used.""",
|
|
|
|
private=True))
|
2004-02-17 17:40:32 +01:00
|
|
|
conf.registerChannelValue(conf.supybot.plugins.Amazon, 'linkSnarfer',
|
|
|
|
registry.Boolean(False, """Determines whether the bot will reply to
|
|
|
|
Amazon.com URLs in the channel with a description of the item at the
|
|
|
|
URL."""))
|
2004-01-20 07:27:17 +01:00
|
|
|
|
2004-02-17 17:40:32 +01:00
|
|
|
class Amazon(callbacks.PrivmsgCommandAndRegexp):
|
2003-08-20 11:34:15 +02:00
|
|
|
threaded = True
|
2004-02-17 17:40:32 +01:00
|
|
|
regexps = ['amzSnarfer']
|
2004-01-06 06:07:30 +01:00
|
|
|
|
2004-02-17 17:40:32 +01:00
|
|
|
def callCommand(self, method, irc, msg, *L, **kwargs):
|
2004-02-12 02:13:16 +01:00
|
|
|
try:
|
2004-02-17 17:40:32 +01:00
|
|
|
callbacks.PrivmsgCommandAndRegexp.callCommand(self, method, irc, msg, *L, **kwargs)
|
2004-02-12 02:13:16 +01:00
|
|
|
except amazon.NoLicenseKey, e:
|
|
|
|
irc.error('You must have a free Amazon web services license key '
|
|
|
|
'in order to use this command. You can get one at '
|
|
|
|
'<http://www.amazon.com/webservices>. Once you have '
|
|
|
|
'one, you can set it with the command '
|
|
|
|
'"config supybot.plugins.Amazon.licensekey <key>".')
|
|
|
|
|
2004-01-06 06:07:30 +01:00
|
|
|
def _genResults(self, reply, attribs, items, url, bold, bold_item):
|
2003-12-02 08:38:18 +01:00
|
|
|
results = {}
|
|
|
|
res = []
|
2003-12-04 02:56:50 +01:00
|
|
|
if isinstance(items, amazon.Bag):
|
|
|
|
items = [items]
|
2003-12-02 08:38:18 +01:00
|
|
|
for item in items:
|
|
|
|
try:
|
|
|
|
for k,v in attribs.iteritems():
|
|
|
|
results[v] = getattr(item, k, 'unknown')
|
|
|
|
if isinstance(results[v], amazon.Bag):
|
|
|
|
results[v] = getattr(results[v], k[:-1], 'unknown')
|
|
|
|
if not isinstance(results[v], basestring):
|
|
|
|
results[v] = utils.commaAndify(results[v])
|
2004-02-19 08:40:57 +01:00
|
|
|
if bold_item in results:
|
|
|
|
if bold:
|
|
|
|
results[bold_item] = ircutils.bold(results[bold_item])
|
|
|
|
else:
|
|
|
|
results[bold_item] = '"%s"' % results[bold_item]
|
2003-12-02 08:38:18 +01:00
|
|
|
if not url:
|
|
|
|
results['url'] = ''
|
|
|
|
else:
|
|
|
|
results['url'] = ' <%s>' % results['url']
|
|
|
|
s = reply % results
|
2004-08-29 00:46:12 +02:00
|
|
|
if isinstance(s, unicode):
|
|
|
|
s = s.encode('utf-8')
|
2003-12-02 08:38:18 +01:00
|
|
|
res.append(str(s))
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
self.log.warning(str(e))
|
2003-12-04 02:56:50 +01:00
|
|
|
except UnicodeEncodeError, e:
|
|
|
|
self.log.warning(str(e))
|
2003-12-02 08:38:18 +01:00
|
|
|
return res
|
|
|
|
|
2003-08-20 11:34:15 +02:00
|
|
|
def isbn(self, irc, msg, args):
|
2003-12-02 08:38:18 +01:00
|
|
|
"""[--url] <isbn>
|
2003-08-20 11:34:15 +02:00
|
|
|
|
2003-12-02 08:38:18 +01:00
|
|
|
Returns the book matching the given ISBN number. If --url is
|
|
|
|
specified, a link to amazon.com's page for the book will also be
|
|
|
|
returned.
|
2003-08-20 11:34:15 +02:00
|
|
|
"""
|
2003-12-02 08:38:18 +01:00
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
|
|
|
url = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
isbn = privmsgs.getArgs(rest)
|
2003-08-20 11:34:15 +02:00
|
|
|
isbn = isbn.replace('-', '').replace(' ', '')
|
2003-12-02 08:38:18 +01:00
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'Authors' : 'author',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-02 08:38:18 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s, written by %(author)s; published by ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(publisher)s; price: %(price)s%(url)s'
|
2003-08-20 11:34:15 +02:00
|
|
|
try:
|
|
|
|
book = amazon.searchByKeyword(isbn)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, book, url, bold, 'title')
|
2003-12-02 08:38:18 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-02 08:38:18 +01:00
|
|
|
return
|
2003-08-20 11:34:15 +02:00
|
|
|
except amazon.AmazonError, e:
|
2003-12-02 08:38:18 +01:00
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No book was found with that ISBN.')
|
2003-12-04 02:56:50 +01:00
|
|
|
|
2003-12-08 17:32:29 +01:00
|
|
|
def books(self, irc, msg, args):
|
|
|
|
"""[--url] <keywords>
|
|
|
|
|
|
|
|
Returns the books matching the given <keywords> search. If --url is
|
|
|
|
specified, a link to amazon.com's page for the book will also be
|
|
|
|
returned.
|
|
|
|
"""
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
|
|
|
url = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
keyword = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'Authors' : 'author',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-08 17:32:29 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s, written by %(author)s; published by ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(publisher)s; price: %(price)s%(url)s'
|
2003-12-08 17:32:29 +01:00
|
|
|
try:
|
|
|
|
books = amazon.searchByKeyword(keyword)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, books, url, bold, 'title')
|
2003-12-08 17:32:29 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-08 17:32:29 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No books were found with that keyword search.')
|
2003-12-08 17:32:29 +01:00
|
|
|
|
|
|
|
def videos(self, irc, msg, args):
|
|
|
|
"""[--url] [--{dvd,vhs}] <keywords>
|
|
|
|
|
|
|
|
Returns the videos matching the given <keyword> search. If --url is
|
|
|
|
specified, a link to amazon.com's page for the video will also be
|
|
|
|
returned. Search defaults to using --dvd.
|
|
|
|
"""
|
|
|
|
opts = ['url']
|
|
|
|
products = ['dvd', 'vhs']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts + products)
|
|
|
|
url = False
|
|
|
|
product = 'dvd'
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
if option in products:
|
|
|
|
product = option
|
|
|
|
keyword = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'MpaaRating' : 'mpaa',
|
|
|
|
'Media' : 'media',
|
|
|
|
'ReleaseDate' : 'date',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-08 17:32:29 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s (%(media)s), rated %(mpaa)s; released ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(date)s; published by %(publisher)s; price: %(price)s%(url)s'
|
2003-12-08 17:32:29 +01:00
|
|
|
try:
|
|
|
|
videos = amazon.searchByKeyword(keyword, product_line=product)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, videos, url, bold, 'title')
|
2003-12-08 17:32:29 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-08 17:32:29 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No videos were found with that keyword search.')
|
2003-12-08 17:32:29 +01:00
|
|
|
|
2003-12-04 02:56:50 +01:00
|
|
|
def asin(self, irc, msg, args):
|
|
|
|
"""[--url] <asin>
|
|
|
|
|
|
|
|
Returns the item matching the given ASIN number. If --url is
|
|
|
|
specified, a link to amazon.com's page for the item will also be
|
|
|
|
returned.
|
|
|
|
"""
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
|
|
|
url = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
asin = privmsgs.getArgs(rest)
|
|
|
|
asin = asin.replace('-', '').replace(' ', '')
|
|
|
|
attribs = {'ProductName' : 'title',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-04 02:56:50 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s; price: %(price)s%(url)s'
|
2003-12-04 02:56:50 +01:00
|
|
|
try:
|
|
|
|
item = amazon.searchByASIN(asin)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, item, url, bold, 'title')
|
2003-12-04 02:56:50 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-04 02:56:50 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No item was found with that ASIN.')
|
2003-12-04 02:56:50 +01:00
|
|
|
|
|
|
|
def upc(self, irc, msg, args):
|
|
|
|
"""[--url] <upc>
|
|
|
|
|
|
|
|
Returns the item matching the given UPC number. If --url is
|
|
|
|
specified, a link to amazon.com's page for the item will also be
|
|
|
|
returned. Only items in the following categories may be found via upc
|
|
|
|
search: music, classical, software, dvd, video, vhs, electronics,
|
|
|
|
pc-hardware, and photo.
|
|
|
|
"""
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
|
|
|
url = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
upc = privmsgs.getArgs(rest)
|
|
|
|
upc = upc.replace('-', '').replace(' ', '')
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'manufacturer',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-04 02:56:50 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s %(manufacturer)s; price: %(price)s%(url)s'
|
2003-12-04 02:56:50 +01:00
|
|
|
try:
|
|
|
|
item = amazon.searchByUPC(upc)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, item, url, bold, 'title')
|
2003-12-04 02:56:50 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-04 02:56:50 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No item was found with that UPC.')
|
2003-12-02 08:38:18 +01:00
|
|
|
|
|
|
|
def author(self, irc, msg, args):
|
|
|
|
"""[--url] <author>
|
2003-08-25 19:48:03 +02:00
|
|
|
|
2003-12-02 08:38:18 +01:00
|
|
|
Returns a list of books written by the given author. If --url is
|
|
|
|
specified, a link to amazon.com's page for the book will also be
|
|
|
|
returned.
|
|
|
|
"""
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
|
|
|
url = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
author = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'Authors' : 'author',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-02 08:38:18 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s, written by %(author)s; published by ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(publisher)s; price: %(price)s%(url)s'
|
2003-12-02 08:38:18 +01:00
|
|
|
try:
|
|
|
|
books = amazon.searchByAuthor(author)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, books, url, bold, 'title')
|
2003-12-02 08:38:18 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-02 08:38:18 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No books were found by that author.')
|
2003-12-04 02:56:50 +01:00
|
|
|
|
|
|
|
# FIXME: Until I get a *good* list of categories (ones that actually work),
|
|
|
|
# these commands will remain unavailable
|
|
|
|
'''
|
|
|
|
_textToNode = {'dvds':'130', 'magazines':'599872', 'music':'301668',
|
|
|
|
'software':'491286', 'vhs':'404272', 'kitchen':'491864',
|
|
|
|
'video games':'471280', 'toys':'491290', 'camera':'502394',
|
|
|
|
'outdoor':'468250', 'computers':'565118', 'tools':'468240',
|
|
|
|
'electronics':'172282'
|
|
|
|
}
|
|
|
|
def categories(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns a list of valid categories to use with the bestsellers
|
|
|
|
commands.
|
|
|
|
"""
|
|
|
|
cats = self._textToNode.keys()
|
|
|
|
cats.sort()
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(cats))
|
2003-12-04 02:56:50 +01:00
|
|
|
|
|
|
|
def bestsellers(self, irc, msg, args):
|
|
|
|
"""[--url] <category>
|
|
|
|
|
|
|
|
Returns a list of best selling items in <category>. The 'categories'
|
2004-08-19 01:15:27 +02:00
|
|
|
command will return a list of the available categories. If --url
|
2003-12-04 02:56:50 +01:00
|
|
|
is specified, a link to amazon.com's page for the item will also be
|
|
|
|
returned.
|
|
|
|
"""
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', opts)
|
|
|
|
url = False
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
category = privmsgs.getArgs(rest).lower()
|
|
|
|
if category not in self._textToNode:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('An invalid category was specified. The categories'
|
2003-12-04 02:56:50 +01:00
|
|
|
' command will return a list of valid categories')
|
|
|
|
return
|
|
|
|
category = self._textToNode[category]
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'URL' : 'url'
|
|
|
|
}
|
|
|
|
s = '"%(title)s", from %(publisher)s.%(url)s'
|
|
|
|
try:
|
2003-12-04 03:04:56 +01:00
|
|
|
#self.log.warning(category)
|
2003-12-04 02:56:50 +01:00
|
|
|
items = amazon.browseBestSellers(category)
|
2003-12-04 03:04:56 +01:00
|
|
|
#self.log.warning(items)
|
2003-12-04 02:56:50 +01:00
|
|
|
res = self._genResults(s, attribs, items, url)
|
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-04 02:56:50 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No items were found on that best seller list.')
|
2003-12-04 02:56:50 +01:00
|
|
|
'''
|
|
|
|
|
2003-12-02 08:38:18 +01:00
|
|
|
|
|
|
|
def artist(self, irc, msg, args):
|
|
|
|
"""[--url] [--{music,classical}] <artist>
|
|
|
|
|
|
|
|
Returns a list of items by the given artist. If --url is specified, a
|
|
|
|
link to amazon.com's page for the match will also be returned. The
|
|
|
|
search defaults to using --music.
|
|
|
|
"""
|
|
|
|
products = ['music', 'classical']
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', products + opts)
|
|
|
|
url = False
|
|
|
|
product = ''
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
if option in products:
|
|
|
|
product = option
|
|
|
|
product = product or 'music'
|
|
|
|
artist = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'Artists' : 'artist',
|
|
|
|
'Media' : 'media',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-02 08:38:18 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s (%(media)s), by %(artist)s; published by ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(publisher)s; price: %(price)s%(url)s'
|
2003-12-02 08:38:18 +01:00
|
|
|
try:
|
|
|
|
items = amazon.searchByArtist(artist, product_line=product)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, items, url, bold, 'title')
|
2003-12-02 08:38:18 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-02 08:38:18 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No items were found by that artist.')
|
2003-12-02 08:38:18 +01:00
|
|
|
|
|
|
|
def actor(self, irc, msg, args):
|
|
|
|
"""[--url] [--{dvd,vhs,video}] <actor>
|
|
|
|
|
|
|
|
Returns a list of items starring the given actor. If --url is
|
|
|
|
specified, a link to amazon.com's page for the match will also be
|
|
|
|
returned. The search defaults to using --dvd.
|
|
|
|
"""
|
|
|
|
products = ['dvd', 'video', 'vhs']
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', products + opts)
|
|
|
|
url = False
|
|
|
|
product = ''
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
if option in products:
|
|
|
|
product = option
|
|
|
|
product = product or 'dvd'
|
|
|
|
actor = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'MpaaRating' : 'mpaa',
|
|
|
|
'Media' : 'media',
|
|
|
|
'ReleaseDate' : 'date',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-02 08:38:18 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s (%(media)s), rated %(mpaa)s; released ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(date)s; published by %(publisher)s; price: %(price)s%(url)s'
|
2003-12-02 08:38:18 +01:00
|
|
|
try:
|
|
|
|
items = amazon.searchByActor(actor, product_line=product)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, items, url, bold, 'title')
|
2003-12-02 08:38:18 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-02 08:38:18 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No items were found starring that actor.')
|
2003-12-04 02:56:50 +01:00
|
|
|
|
|
|
|
def director(self, irc, msg, args):
|
|
|
|
"""[--url] [--{dvd,vhs,video}] <director>
|
|
|
|
|
|
|
|
Returns a list of items by the given director. If --url is
|
|
|
|
specified, a link to amazon.com's page for the match will also be
|
|
|
|
returned. The search defaults to using --dvd.
|
|
|
|
"""
|
|
|
|
products = ['dvd', 'video', 'vhs']
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', products + opts)
|
|
|
|
url = False
|
|
|
|
product = ''
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
if option in products:
|
|
|
|
product = option
|
|
|
|
product = product or 'dvd'
|
|
|
|
director = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'MpaaRating' : 'mpaa',
|
|
|
|
'Media' : 'media',
|
|
|
|
'ReleaseDate' : 'date',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-04 02:56:50 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s (%(media)s), rated %(mpaa)s; released ' \
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(date)s; published by %(publisher)s; price: %(price)s%(url)s'
|
2003-12-04 02:56:50 +01:00
|
|
|
try:
|
|
|
|
items = amazon.searchByDirector(director, product_line=product)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, items, url, bold, 'title')
|
2003-12-04 02:56:50 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-04 02:56:50 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No items were found by that director.')
|
2003-12-02 08:38:18 +01:00
|
|
|
|
|
|
|
def manufacturer(self, irc, msg, args):
|
|
|
|
""" [--url] \
|
|
|
|
[--{pc-hardware,kitchen,electronics,videogames,software,photo}] \
|
|
|
|
<manufacturer>
|
|
|
|
|
|
|
|
Returns a list of items by the given manufacturer. If --url is
|
|
|
|
specified, a link to amazon.com's page for the match will also be
|
|
|
|
returned. The search defaults to using --pc-hardware.
|
|
|
|
"""
|
|
|
|
products = ['electronics', 'kitchen', 'videogames', 'software',
|
|
|
|
'photo', 'pc-hardware']
|
|
|
|
opts = ['url']
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', products + opts)
|
|
|
|
url = False
|
|
|
|
product = ''
|
|
|
|
for (option, argument) in optlist:
|
|
|
|
option = option.lstrip('-')
|
|
|
|
if option == 'url':
|
|
|
|
url = True
|
|
|
|
if option in products:
|
|
|
|
product = option
|
|
|
|
product = product or 'pc-hardware'
|
|
|
|
manufacturer = privmsgs.getArgs(rest)
|
|
|
|
attribs = {'ProductName' : 'title',
|
2004-02-17 17:40:32 +01:00
|
|
|
'OurPrice' : 'price',
|
2003-12-02 08:38:18 +01:00
|
|
|
'URL' : 'url'
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s; price: %(price)s%(url)s'
|
2003-12-02 08:38:18 +01:00
|
|
|
try:
|
|
|
|
items = amazon.searchByManufacturer(manufacturer,
|
|
|
|
product_line=product)
|
2004-01-21 02:33:59 +01:00
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
2004-01-06 06:07:30 +01:00
|
|
|
res = self._genResults(s, attribs, items, url, bold, 'title')
|
2003-12-02 08:38:18 +01:00
|
|
|
if res:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(utils.commaAndify(res))
|
2003-12-02 08:38:18 +01:00
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('No items were found by that manufacturer.')
|
2003-08-20 11:34:15 +02:00
|
|
|
|
2004-02-17 17:40:32 +01:00
|
|
|
def amzSnarfer(self, irc, msg, match):
|
|
|
|
r"http://www.amazon.com/exec/obidos/(?:tg/detail/-/|ASIN/)([^/]+)"
|
|
|
|
if not self.registryValue('linkSnarfer', msg.args[0]):
|
|
|
|
return
|
|
|
|
match = match.group(1)
|
|
|
|
# attribs is limited to ProductName since the URL can link to
|
|
|
|
# *any* type of product. The only attribute we know it will have
|
|
|
|
# is ProductName
|
|
|
|
attribs = {'ProductName' : 'title',
|
|
|
|
'Manufacturer' : 'publisher',
|
|
|
|
'Authors' : 'author',
|
|
|
|
'MpaaRating' : 'mpaa',
|
|
|
|
'Media' : 'media',
|
|
|
|
'ReleaseDate' : 'date',
|
|
|
|
'OurPrice' : 'price',
|
|
|
|
'Artists' : 'artist',
|
|
|
|
}
|
2004-02-19 08:40:57 +01:00
|
|
|
s = '%(title)s; %(artist)s; %(author)s; %(mpaa)s; %(media)s; '\
|
2004-02-17 17:40:32 +01:00
|
|
|
'%(date)s; %(publisher)s; price: %(price)s'
|
|
|
|
try:
|
|
|
|
item = amazon.searchByASIN(match)
|
|
|
|
bold = self.registryValue('bold', msg.args[0])
|
|
|
|
res = self._genResults(s, attribs, item, False, bold, 'title')
|
|
|
|
if res:
|
|
|
|
res = utils.commaAndify(res)
|
|
|
|
res = res.replace('; unknown', '')
|
|
|
|
res = res.replace('; price: unknown', '')
|
|
|
|
irc.reply(res, prefixName=False)
|
|
|
|
return
|
|
|
|
except amazon.AmazonError, e:
|
|
|
|
pass
|
|
|
|
self.log.warning('No item was found with that ASIN.')
|
|
|
|
|
2003-08-20 11:34:15 +02:00
|
|
|
Class = Amazon
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|