[aur-dev] [PATCH] git-update: Improve error message for non-blob objects

Lukas Fleischer lfleischer at archlinux.org
Mon Jun 8 11:49:09 UTC 2015


When a repository contains a directory, a user is currently faced with
the following error message:

    remote: Traceback (most recent call last):
    remote:   File "hooks/update", line 194, in <module>
    remote:     if repo[treeobj.id].size > 250000:
    remote: AttributeError: '_pygit2.Tree' object has no attribute 'size'
    remote: error: hook declined to update refs/heads/master

Explicitly check for directories and other non-blob objects and display
a more intuitive message.

Signed-off-by: Lukas Fleischer <lfleischer at archlinux.org>
---
 git-interface/git-update.py | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/git-interface/git-update.py b/git-interface/git-update.py
index 7ecffeb..92953f6 100755
--- a/git-interface/git-update.py
+++ b/git-interface/git-update.py
@@ -191,7 +191,16 @@ for commit in walker:
         die_commit("missing .SRCINFO", commit.id)
 
     for treeobj in commit.tree:
-        if repo[treeobj.id].size > 250000:
+        blob = repo[treeobj.id]
+
+        if isinstance(blob, pygit2.Tree):
+            die_commit("the repository must not contain subdirectories",
+                       commit.id)
+
+        if not isinstance(blob, pygit2.Blob):
+            die_commit("not a blob object: %s" % (treeobj), commit.id)
+
+        if blob.size > 250000:
             die_commit("maximum blob size (250kB) exceeded", commit.id)
 
     srcinfo_raw = repo[commit.tree['.SRCINFO'].id].data.decode()
-- 
2.4.2


More information about the aur-dev mailing list