aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-04-09 23:53:09 +0200
committerGuido Günther <agx@sigxcpu.org>2010-04-10 13:37:27 +0200
commitb0100b6624ed7ee68ca84fcb220a95bcee61dc11 (patch)
tree6241cf9a635b6631343e0d35947d09d3ff696ffd /examples
parent1072473232f0caa24aeebecf8fc7e70a098b450d (diff)
Add simple Zeitgist data provider
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/zeitgeist-git.py97
1 files changed, 97 insertions, 0 deletions
diff --git a/examples/zeitgeist-git.py b/examples/zeitgeist-git.py
new file mode 100755
index 00000000..f05ecf6e
--- /dev/null
+++ b/examples/zeitgeist-git.py
@@ -0,0 +1,97 @@
+#! /usr/bin/python
+# vim: set fileencoding=utf-8 :
+#
+# (C) 2010 Guido Guenther <agx@sigxcpu.org>
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# Simple Zeitgeist Git data source
+
+"""Post-commit hook to submit the commit to Zeitgeist (http://www.zeitgeist-project.com)
+
+copy as post-commit to
+
+ .git/hooks/post-commit
+
+in existing repositories or to
+
+ /usr/share/git-core/templates
+
+so it get's used for new ones.
+"""
+
+
+import os
+import subprocess
+import sys
+import time
+
+CLIENT = None
+
+try:
+ from zeitgeist.client import ZeitgeistClient
+ from zeitgeist.datamodel import Event, Subject, Interpretation, Manifestation
+except ImportError:
+ pass
+else:
+ try:
+ CLIENT = ZeitgeistClient()
+ except RuntimeError, e:
+ print "Unable to connect to Zeitgeist, won't send events. Reason: '%s'" %e
+
+
+def get_repo():
+ """Get uri of remote repository and it's name"""
+ repo = None
+ uri = subprocess.Popen(['git', 'config', '--get', 'remote.origin.url'],
+ stdout=subprocess.PIPE).communicate()[0]
+ if uri:
+ uri = unicode(uri.strip())
+ repo = unicode(uri.rsplit('/', 1)[1])
+ repo = repo.rsplit(u'.git', 1)[0]
+ return repo, uri
+
+
+def main(argv):
+ interpretation = Interpretation.MODIFY_EVENT.uri
+
+ # FIXME: I'd be great if zeitgeist would allow for more detail:
+ # * branch
+ # * log summary (git log -1 --format=%s HEAD)
+ curdir = os.path.abspath(os.curdir)
+ uri = u"file://%s" % curdir
+
+ repo, origin = get_repo()
+ if not repo:
+ repo = unicode(curdir.rsplit('/', 1)[1])
+ origin = uri
+
+ print "Repo: '%s', origin: '%s'" % (repo, origin)
+ subject = Subject.new_for_values(
+ uri = uri,
+ interpretation = Interpretation.SOURCECODE.uri,
+ manifestation = Manifestation.FILE.uri,
+ text = repo,
+ origin = origin)
+ event = Event.new_for_values(
+ timestamp = int(time.time() * 1000),
+ interpretation = interpretation,
+ manifestation = Manifestation.USER_ACTIVITY.uri,
+ actor = "application://gitg.desktop",
+ subjects = [subject])
+ CLIENT.insert_event(event)
+
+if __name__ == '__main__':
+ main(sys.argv)
+