summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsimo <simo>2005-06-10 03:40:22 +0200
committersimo <simo>2005-06-10 03:40:22 +0200
commit45e5883a1579ef64071d161a216e7159bfab1daf (patch)
tree72ea6b317a735a5378cdaa5d1cc42ca5067597fd
parent6adf639a341b8954e911fce2d2bd3e7443a1426c (diff)
downloadaur-45e5883a1579ef64071d161a216e7159bfab1daf.tar.gz
aur-45e5883a1579ef64071d161a216e7159bfab1daf.tar.xz
Added newpackage-notify to finally implement
new package notifications that people can ask for on their user page. This script should run on a daily cronjob. A few spelling stupidity fixes as well.
-rwxr-xr-xsupport/scripts/newpackage-notify86
-rw-r--r--web/html/pkgedit.php2
-rw-r--r--web/lang/pkgedit_po.inc8
3 files changed, 91 insertions, 5 deletions
diff --git a/support/scripts/newpackage-notify b/support/scripts/newpackage-notify
new file mode 100755
index 00000000..24a996f3
--- /dev/null
+++ b/support/scripts/newpackage-notify
@@ -0,0 +1,86 @@
+#!/usr/bin/python -O
+# $Id$
+# This program is intended to be run as a once-a-day cronjob, it
+# sends a batched email containing the names of all new pacakges in
+# the AUR, added within the last 24 hours, to those who have requested
+# it on their account page.
+
+import sys
+import os
+import MySQLdb, MySQLdb.connections
+import ConfigParser
+from time import time
+
+#some options
+SENDMAIL="/usr/sbin/sendmail"
+
+#Copied and pasted from tupkg updater:
+###########################################################
+# Deal with configuration
+###########################################################
+
+conffile = '/home/aur/tupkgs.conf'
+
+if not os.path.isfile(conffile):
+ print "Error: cannot access config file ("+conffile+")"
+ sys.exit(1)
+
+config = ConfigParser.ConfigParser()
+config.read(conffile)
+############################################################
+
+############################################################
+# Step 1, figure out the unix time 24 hours ago
+starttime = time() - 24*60*60
+
+############################################################
+# Step 2, do all the mysql mucking
+dbconnection = MySQLdb.connect(host=config.get('mysql', 'host'), user=config.get('mysql', 'username'), passwd=config.get('mysql', 'password'), db=config.get('mysql', 'db'))
+q = dbconnection.cursor()
+
+q.execute("SELECT Packages.Name, Packages.ID FROM Packages WHERE Packages.SubmittedTS >= %d AND Packages.DummyPkg = 0"%starttime)
+packages = q.fetchall()
+
+q.execute("SELECT Users.Email FROM Users WHERE Users.NewPkgNotify = 1")
+emails = q.fetchall()
+
+###########################################################
+# Step 3, generate the message, depending on what we found
+
+#generate the headers to say where it is going
+message = "To: \nBcc: "
+emails_list=[]
+for i in emails:
+ emails_list.append(i[0])
+message = message + (", ".join(emails_list))
+
+#where it came from + other headers
+message = message + "\nReply-to: nobody@archlinux.org\nFrom: aur-notify@archlinux.org\nX-Mailer: Python\nX-MimeOLE: Produced by AUR\n"
+
+#the subject
+message = message + "Subject: AUR New Package Notification\n\n"
+
+#TODO: translations of message wouldn't kill anyone, but this would then need to find out the users language pref too
+#Ok now the body
+message = message + "Packages added to the AUR within the last 24 hours include:\n\n"
+pkgs_list=[]
+for i in packages:
+ message = message + i[0] + " ( http://aur.archlinux.org/packages.php?do_Details=1&ID=%d )\n"%i[1]
+message = message + '''
+---
+You received this email because you chose to receive new package
+notifications on your user options page in the AUR. If you no
+longer wish to receive this daily mailing, please go to your
+user options page in the AUR (http://aur.archlinux.org) and
+uncheck "New Package Notify".
+
+'''
+#print message #that's for debug
+
+###########################################################
+# Step 4, mail that sucker
+mailer = os.popen("%s -t" % SENDMAIL, 'w')
+mailer.write(message)
+mailer.close()
+
+# vim:noet:ts=2 sw=2 ft=python
diff --git a/web/html/pkgedit.php b/web/html/pkgedit.php
index ae0170bd..3a6dc99e 100644
--- a/web/html/pkgedit.php
+++ b/web/html/pkgedit.php
@@ -93,7 +93,7 @@ if ($_REQUEST["add_Comment"]) {
$q.= "WHERE Packages.ID = ".intval($_REQUEST["ID"]);
$result = db_query($q, $dbh);
$row = mysql_fetch_assoc($result);
- $body = __("A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control.",array($row['Name'],$_REQUEST["ID"]));
+ $body = __("A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou received this e-mail because you chose to recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control.",array($row['Name'],$_REQUEST["ID"]));
$body = wordwrap($body, 70);
$bcc = implode(', ', $bcc);
$headers = "Bcc: $bcc\nReply-to: nobody@archlinux.org\nFrom:aur-notify@archlinux.org\nX-Mailer: PHP\nX-MimeOLE: Produced By AUR\n";
diff --git a/web/lang/pkgedit_po.inc b/web/lang/pkgedit_po.inc
index 30cdc15c..41b2265a 100644
--- a/web/lang/pkgedit_po.inc
+++ b/web/lang/pkgedit_po.inc
@@ -89,10 +89,10 @@ $_t["en"]["You've found a bug if you see this...."] = "You've found a bug if you
# $_t["de"]["Category"] = "--> Deutsche Ãœbersetzung hier. <--";
$_t["pl"]["You've found a bug if you see this...."] = "Jeżeli to widzisz, to znalazłeś błąd...";
-$_t["en"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control.";
-# $_t["es"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "--> Traducción española aquí. <--";
-# $_t["fr"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "--> Traduction française ici. <--";
-# $_t["de"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "--> Deutsche Übersetzung hier. <--";
+$_t["en"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou received this e-mail because you chose to recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou recieved this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control.";
+# $_t["es"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou received this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "--> Traducción española aquí. <--";
+# $_t["fr"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou received this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "--> Traduction française ici. <--";
+# $_t["de"]["A comment has been added to %s, you may view it at:\nhttp://aur.archlinux.org/packages.php?do_Details=1&ID=%s\n\nYou received this e-mail because you chose to have recieve notifications of new comments on this package, if you no longer wish to recieve notifications about this package, please go the the above package page and click the appropriate control."] = "--> Deutsche Übersetzung hier. <--";
$_t["en"]["AUR Comment Notification for %s"] = "AUR Comment Notification for %s";
# $_t["es"]["AUR Comment Notification for %s"] = "--> Traducción española aquí. <--";