This repository has been archived by the owner on Oct 25, 2019. It is now read-only.
forked from sbp/phenny
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2da9ed0
commit a671133
Showing
3 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/usr/bin/python3 | ||
""" | ||
posted.py - Remembers who posted which URL, can show on URL match. | ||
author: andreim <[email protected]> | ||
""" | ||
import os | ||
import sqlite3 | ||
from ago import human | ||
|
||
|
||
def setup(self): | ||
fn = self.nick + '-' + self.config.host + '.posted.db' | ||
self.posted_db = os.path.join(os.path.expanduser('~/.phenny'), fn) | ||
conn = sqlite3.connect(self.posted_db) | ||
|
||
c = conn.cursor() | ||
c.execute('''create table if not exists posted ( | ||
channel varchar(255), | ||
nick varchar(255), | ||
url varchar(512), | ||
time timestamp date default (datetime('now', 'localtime')) | ||
);''') | ||
|
||
c.close() | ||
conn.close() | ||
|
||
|
||
def check_posted(phenny, input, url): | ||
if url: | ||
conn = sqlite3.connect(phenny.posted_db, | ||
detect_types=sqlite3.PARSE_DECLTYPES) | ||
c = conn.cursor() | ||
c.execute("SELECT nick, time FROM posted WHERE channel=? AND url=?", | ||
(input.sender, url)) | ||
res = c.fetchone() | ||
|
||
posted = None | ||
|
||
if res: | ||
nickname = res[0] | ||
time = human(res[1]) | ||
|
||
posted = "{0} by {1}".format(time, nickname) | ||
|
||
|
||
else: | ||
c.execute("INSERT INTO posted (channel, nick, url) VALUES (?, ?, ?)", | ||
(input.sender, input.nick, url)) | ||
conn.commit() | ||
|
||
conn.close() | ||
|
||
return posted | ||
|
||
|
||
def posted(phenny, input): | ||
if not input.group(2): | ||
return phenny.say(".posted <URL> - checks if URL has been posted" | ||
+ " before in this channel.") | ||
url = input.group(2) | ||
|
||
posted = check_posted(phenny, input, url) | ||
if posted: | ||
# when the day comes when you can inhibit snarfuri if modules are called | ||
# phenny.reply("URL was posted {0}".format(posted)) | ||
pass | ||
else: | ||
phenny.reply("I don't remember seeing this URL in this channel.") | ||
|
||
posted.thread = False | ||
posted.commands = ["posted"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ lxml | |
mock | ||
nose | ||
requests | ||
ago |