]> jfr.im git - erebus.git/blobdiff - modules/coins.py
trivia add todo
[erebus.git] / modules / coins.py
index 34bbb545a7ffc94fa54405dada45edd67466d175..8653667f0f95ce02a4802e79ec7ec387fad50290 100644 (file)
@@ -1,4 +1,5 @@
 # Erebus IRC bot - Author: Erebus Team
+# vim: fileencoding=utf-8
 # simple coin module
 # This file is released into the public domain; see http://unlicense.org/
 
@@ -6,8 +7,9 @@
 modinfo = {
        'author': 'Erebus Team',
        'license': 'public domain',
-       'compatible': [1], # compatible module API versions
-       'depends': [], # other modules required to work properly?
+       'compatible': [0],
+       'depends': [],
+       'softdeps': [],
 }
 
 # preamble
@@ -22,8 +24,11 @@ import json
 import requests
 
 coin_regex = (
-#  re.compile(r'([0-9., ]+[0-9]+) (BTC|bitcoin|doge|dogecoin|ltc|litecoin)'), # Fix regex
-       re.compile(r'([0-9.\s]+)\s(btc|bitcoin|doge|dogecoin|ltc|litecoin)'),
+       re.compile(r'([0-9.,\s]+)\s(btc|bitcoin|doge|dogecoin|ltc|litecoin)'),
+)
+
+cur_regex = (
+       re.compile(r'([0-9.,\s]+)\s([a-zA-Z]{3})\sin\s([a-zA-Z]{3})'),
 )
 
 url = 'http://www.cryptocoincharts.info/v2/api/tradingPairs'
@@ -32,8 +37,8 @@ def get_coin_price(pairs):
        response = requests.post(url, data = {'pairs': pairs})
        return json.loads(response.text)
 
-@lib.hook('btc')
-def cmd_gtest(bot, user, chan, realtarget, *args):
+@lib.hook()
+def btc(bot, user, chan, realtarget, *args):
        if len(args) > 0:
                try:
                        response = get_coin_price('btc_eur')
@@ -46,8 +51,8 @@ def cmd_gtest(bot, user, chan, realtarget, *args):
                price = str(float(response[0]['price']))
                bot.msg(chan, "1 BTC = %s EUR" % price)
 
-@lib.hook('doge')
-def cmd_gtest(bot, user, chan, realtarget, *args):
+@lib.hook()
+def doge(bot, user, chan, realtarget, *args):
        if len(args) > 0:
                try:
                        doge_btc = get_coin_price('doge_btc')
@@ -62,8 +67,8 @@ def cmd_gtest(bot, user, chan, realtarget, *args):
                price = str(float(doge_btc[0]['price']) * float(btc_eur[0]['price']))
                bot.msg(chan, "1 DOGE = %s EUR" % price)
 
-@lib.hook('ltc')
-def cmd_gtest(bot, user, chan, realtarget, *args):
+@lib.hook()
+def ltc(bot, user, chan, realtarget, *args):
        if len(args) > 0:
                try:
                        ltc_btc = get_coin_price('ltc_btc')
@@ -88,9 +93,19 @@ def privmsg_hook(bot, line):
 
        chan = line.split()[2]
 
+       if 'in' in line:
+               for r in cur_regex:
+                       for a, f, t in r.findall(linetx):
+
+                               # https://www.google.com/finance/converter?a=1.2&from=USD&to=EUR
+
+                               a = a.replace(",", ".")
+                               a = a.replace(" ", "")
+
        if 'btc' in line or 'bitcoin' in line or 'doge' in line or 'dogecoin' in line:
                for r in coin_regex:
                        for amount, coin in r.findall(linetx):
+                               amount = amount.replace(",", ".")
                                amount = amount.replace(" ", "")
                                if 'btc' in coin or 'bitcoin' in coin:
                                        try:
@@ -111,7 +126,3 @@ def privmsg_hook(bot, line):
                                                bot.msg(chan, "%s DOGE = %s EUR" % (amount, price))
                                        except:
                                                bot.msg(chan, "Invalid amount.")
-                                               
-                                       
-                               print amount
-                               print coin