phenny/modules/linx.py

57 lines
1.6 KiB
Python
Raw Normal View History

2012-03-27 23:20:18 -04:00
#!/usr/bin/python3
"""
linx.py - linx.li tools
author: mutantmonkey <mutantmonkey@mutantmonkey.in>, andreim <andreim@andreim.net>
"""
from urllib.error import HTTPError
import web
import json
def linx(phenny, input):
""".linx <url> - Upload a URL to linx.li."""
url = input.group(2)
if not url:
phenny.reply("No URL provided. CAN I HAS?")
return
try:
req = web.post("http://linx.li/vtluug", {'url': url})
except (HTTPError, IOError):
phenny.reply("THE INTERNET IS FUCKING BROKEN. Please try again later.")
return
data = json.loads(req)
if len(data) <= 0 or not data['success']:
phenny.reply('Sorry, upload failed.')
return
phenny.reply(data['url'])
linx.rule = (['linx'], r'(.*)')
if __name__ == '__main__':
print(__doc__.strip())
def lines(phenny, input):
""".lines <nickname> <date (YYYYMMDD)> - Returns the number of lines a user posted on a specific date."""
nickname = input.group(2)
date = input.group(3)
if not nickname or not date:
phenny.reply(".lines <nickname> <date (YYYYMMDD)> - Returns the number of lines a user posted on a specific date.")
return
try:
req = web.post("http://linx.li/vtluuglines", {'nickname': nickname, 'date': date})
except (HTTPError, IOError):
phenny.reply("THE INTERNET IS FUCKING BROKEN. Please try again later.")
return
phenny.reply(req)
2012-03-27 23:23:44 -04:00
lines.rule = (['lines'], r'([A-Za-z0-9\-_\\]+) (.*)')
2012-03-27 23:20:18 -04:00
if __name__ == '__main__':
print(__doc__.strip())