Merge branch 'master' of https://git.gnus.org/gnus
[gnus] / etc / post-receive
1 #!/bin/sh
2
3 # 2010-09-01 tzz@lifelogs.com
4
5 # Use the email address of the author of the last commit.
6 export USER_EMAIL=$(git log -1 --format=format:%ae HEAD)
7 export USER_NAME=$(git log -1 --format=format:%an HEAD)
8
9 # the remainder is the standard git-core post-receive-email with some changes:
10
11 # - USER_EMAIL and USER_NAME are used in the header
12 # - the update message is after the diff
13 # - without annotations, we use `git log --format=oneline' to generate the change summary (joining multiples with semicolons)
14
15 # Copyright (c) 2007 Andy Parkins
16 #
17 # An example hook script to mail out commit update information.  This hook
18 # sends emails listing new revisions to the repository introduced by the
19 # change being reported.  The rule is that (for branch updates) each commit
20 # will appear on one email and one email only.
21 #
22 # This hook is stored in the contrib/hooks directory.  Your distribution
23 # will have put this somewhere standard.  You should make this script
24 # executable then link to it in the repository you would like to use it in.
25 # For example, on debian the hook is stored in
26 # /usr/share/doc/git-core/contrib/hooks/post-receive-email:
27 #
28 #  chmod a+x post-receive-email
29 #  cd /path/to/your/repository.git
30 #  ln -sf /usr/share/doc/git-core/contrib/hooks/post-receive-email hooks/post-receive
31 #
32 # This hook script assumes it is enabled on the central repository of a
33 # project, with all users pushing only to it and not between each other.  It
34 # will still work if you don't operate in that style, but it would become
35 # possible for the email to be from someone other than the person doing the
36 # push.
37 #
38 # Config
39 # ------
40 # hooks.mailinglist
41 #   This is the list that all pushes will go to; leave it blank to not send
42 #   emails for every ref update.
43 # hooks.announcelist
44 #   This is the list that all pushes of annotated tags will go to.  Leave it
45 #   blank to default to the mailinglist field.  The announce emails lists
46 #   the short log summary of the changes since the last annotated tag.
47 # hooks.envelopesender
48 #   If set then the -f option is passed to sendmail to allow the envelope
49 #   sender address to be set
50 # hooks.emailprefix
51 #   All emails have their subjects prefixed with this prefix, or "[SCM]"
52 #   if emailprefix is unset, to aid filtering
53 # hooks.showrev
54 #   The shell command used to format each revision in the email, with
55 #   "%s" replaced with the commit id.  Defaults to "git rev-list -1
56 #   --pretty %s", displaying the commit id, author, date and log
57 #   message.  To list full patches separated by a blank line, you
58 #   could set this to "git show -C %s; echo".
59 #   To list a gitweb/cgit URL *and* a full patch for each change set, use this:
60 #     "t=%s; printf 'http://.../?id=%%s' \$t; echo;echo; git show -C \$t; echo"
61 #   Be careful if "..." contains things that will be expanded by shell "eval"
62 #   or printf.
63 #
64 # Notes
65 # -----
66 # All emails include the headers "X-Git-Refname", "X-Git-Oldrev",
67 # "X-Git-Newrev", and "X-Git-Reftype" to enable fine tuned filtering and
68 # give information for debugging.
69 #
70
71 # ---------------------------- Functions
72
73 #
74 # Top level email generation function.  This decides what type of update
75 # this is and calls the appropriate body-generation routine after outputting
76 # the common header
77 #
78 # Note this function doesn't actually generate any email output, that is
79 # taken care of by the functions it calls:
80 #  - generate_email_header
81 #  - generate_create_XXXX_email
82 #  - generate_update_XXXX_email
83 #  - generate_delete_XXXX_email
84 #  - generate_email_footer
85 #
86 generate_email()
87 {
88         # --- Arguments
89         oldrev=$(git rev-parse $1)
90         newrev=$(git rev-parse $2)
91         refname="$3"
92
93         # --- Interpret
94         # 0000->1234 (create)
95         # 1234->2345 (update)
96         # 2345->0000 (delete)
97         if expr "$oldrev" : '0*$' >/dev/null
98         then
99                 change_type="create"
100         else
101                 if expr "$newrev" : '0*$' >/dev/null
102                 then
103                         change_type="delete"
104                 else
105                         change_type="update"
106                 fi
107         fi
108
109         # --- Get the revision types
110         newrev_type=$(git cat-file -t $newrev 2> /dev/null)
111         oldrev_type=$(git cat-file -t "$oldrev" 2> /dev/null)
112         case "$change_type" in
113         create|update)
114                 rev="$newrev"
115                 rev_type="$newrev_type"
116                 ;;
117         delete)
118                 rev="$oldrev"
119                 rev_type="$oldrev_type"
120                 ;;
121         esac
122
123         # The revision type tells us what type the commit is, combined with
124         # the location of the ref we can decide between
125         #  - working branch
126         #  - tracking branch
127         #  - unannoted tag
128         #  - annotated tag
129         case "$refname","$rev_type" in
130                 refs/tags/*,commit)
131                         # un-annotated tag
132                         refname_type="tag"
133                         short_refname=${refname##refs/tags/}
134                         ;;
135                 refs/tags/*,tag)
136                         # annotated tag
137                         refname_type="annotated tag"
138                         short_refname=${refname##refs/tags/}
139                         # change recipients
140                         if [ -n "$announcerecipients" ]; then
141                                 recipients="$announcerecipients"
142                         fi
143                         ;;
144                 refs/heads/*,commit)
145                         # branch
146                         refname_type="branch"
147                         short_refname=${refname##refs/heads/}
148                         ;;
149                 refs/remotes/*,commit)
150                         # tracking branch
151                         refname_type="tracking branch"
152                         short_refname=${refname##refs/remotes/}
153                         echo >&2 "*** Push-update of tracking branch, $refname"
154                         echo >&2 "***  - no email generated."
155                         exit 0
156                         ;;
157                 *)
158                         # Anything else (is there anything else?)
159                         echo >&2 "*** Unknown type of update to $refname ($rev_type)"
160                         echo >&2 "***  - no email generated"
161                         exit 1
162                         ;;
163         esac
164
165         # Check if we've got anyone to send to
166         if [ -z "$recipients" ]; then
167                 case "$refname_type" in
168                         "annotated tag")
169                                 config_name="hooks.announcelist"
170                                 ;;
171                         *)
172                                 config_name="hooks.mailinglist"
173                                 ;;
174                 esac
175                 echo >&2 "*** $config_name is not set so no email will be sent"
176                 echo >&2 "*** for $refname update $oldrev->$newrev"
177                 exit 0
178         fi
179
180         # Email parameters
181         # The email subject will contain the best description of the ref
182         # that we can build from the parameters
183         describe=$(git describe $rev 2>/dev/null)
184         if [ -z "$describe" ]; then
185                 describe=$((git log --format=oneline $oldrev...$newrev | perl -e'@p = <>; chomp @p; print join " ; ", @p') 2>/dev/null)
186         fi
187
188         if [ -z "$describe" ]; then
189                 describe=$rev
190         fi
191
192         generate_email_header
193
194         # Call the correct body generation function
195         fn_name=general
196         case "$refname_type" in
197         "tracking branch"|branch)
198                 fn_name=branch
199                 ;;
200         "annotated tag")
201                 fn_name=atag
202                 ;;
203         esac
204         generate_${change_type}_${fn_name}_email
205
206         generate_email_footer
207 }
208
209 generate_email_header()
210 {
211         # --- Email (all stdout will be the email)
212         # Generate header
213         cat <<-EOF
214         From: ${USER_NAME} <${USER_EMAIL}>
215         To: $recipients
216         Subject: ${emailprefix}$projectdesc $refname_type, $short_refname, ${change_type}d. $describe
217         X-Git-Refname: $refname
218         X-Git-Reftype: $refname_type
219         X-Git-Oldrev: $oldrev
220         X-Git-Newrev: $newrev
221
222         EOF
223 }
224
225 generate_email_footer()
226 {
227         SPACE=" "
228         cat <<-EOF
229         
230         This is an automated email from the git hooks/post-receive script. It was
231         generated because a ref change was pushed to the repository containing
232         the project "$projectdesc".
233
234         The $refname_type, $short_refname has been ${change_type}d
235
236
237         hooks/post-receive
238         --${SPACE}
239         $projectdesc
240         EOF
241 }
242
243 # --------------- Branches
244
245 #
246 # Called for the creation of a branch
247 #
248 generate_create_branch_email()
249 {
250         # This is a new branch and so oldrev is not valid
251         echo "        at  $newrev ($newrev_type)"
252         echo ""
253
254         echo $LOGBEGIN
255         show_new_revisions
256         echo $LOGEND
257 }
258
259 #
260 # Called for the change of a pre-existing branch
261 #
262 generate_update_branch_email()
263 {
264         # Consider this:
265         #   1 --- 2 --- O --- X --- 3 --- 4 --- N
266         #
267         # O is $oldrev for $refname
268         # N is $newrev for $refname
269         # X is a revision pointed to by some other ref, for which we may
270         #   assume that an email has already been generated.
271         # In this case we want to issue an email containing only revisions
272         # 3, 4, and N.  Given (almost) by
273         #
274         #  git rev-list N ^O --not --all
275         #
276         # The reason for the "almost", is that the "--not --all" will take
277         # precedence over the "N", and effectively will translate to
278         #
279         #  git rev-list N ^O ^X ^N
280         #
281         # So, we need to build up the list more carefully.  git rev-parse
282         # will generate a list of revs that may be fed into git rev-list.
283         # We can get it to make the "--not --all" part and then filter out
284         # the "^N" with:
285         #
286         #  git rev-parse --not --all | grep -v N
287         #
288         # Then, using the --stdin switch to git rev-list we have effectively
289         # manufactured
290         #
291         #  git rev-list N ^O ^X
292         #
293         # This leaves a problem when someone else updates the repository
294         # while this script is running.  Their new value of the ref we're
295         # working on would be included in the "--not --all" output; and as
296         # our $newrev would be an ancestor of that commit, it would exclude
297         # all of our commits.  What we really want is to exclude the current
298         # value of $refname from the --not list, rather than N itself.  So:
299         #
300         #  git rev-parse --not --all | grep -v $(git rev-parse $refname)
301         #
302         # Get's us to something pretty safe (apart from the small time
303         # between refname being read, and git rev-parse running - for that,
304         # I give up)
305         #
306         #
307         # Next problem, consider this:
308         #   * --- B --- * --- O ($oldrev)
309         #          \
310         #           * --- X --- * --- N ($newrev)
311         #
312         # That is to say, there is no guarantee that oldrev is a strict
313         # subset of newrev (it would have required a --force, but that's
314         # allowed).  So, we can't simply say rev-list $oldrev..$newrev.
315         # Instead we find the common base of the two revs and list from
316         # there.
317         #
318         # As above, we need to take into account the presence of X; if
319         # another branch is already in the repository and points at some of
320         # the revisions that we are about to output - we don't want them.
321         # The solution is as before: git rev-parse output filtered.
322         #
323         # Finally, tags: 1 --- 2 --- O --- T --- 3 --- 4 --- N
324         #
325         # Tags pushed into the repository generate nice shortlog emails that
326         # summarise the commits between them and the previous tag.  However,
327         # those emails don't include the full commit messages that we output
328         # for a branch update.  Therefore we still want to output revisions
329         # that have been output on a tag email.
330         #
331         # Luckily, git rev-parse includes just the tool.  Instead of using
332         # "--all" we use "--branches"; this has the added benefit that
333         # "remotes/" will be ignored as well.
334
335         # List all of the revisions that were removed by this update, in a
336         # fast-forward update, this list will be empty, because rev-list O
337         # ^N is empty.  For a non-fast-forward, O ^N is the list of removed
338         # revisions
339         fast_forward=""
340         rev=""
341         for rev in $(git rev-list $newrev..$oldrev)
342         do
343                 revtype=$(git cat-file -t "$rev")
344                 echo "  discards  $rev ($revtype)"
345         done
346         if [ -z "$rev" ]; then
347                 fast_forward=1
348         fi
349
350         # List all the revisions from baserev to newrev in a kind of
351         # "table-of-contents"; note this list can include revisions that
352         # have already had notification emails and is present to show the
353         # full detail of the change from rolling back the old revision to
354         # the base revision and then forward to the new revision
355         for rev in $(git rev-list $oldrev..$newrev)
356         do
357                 revtype=$(git cat-file -t "$rev")
358                 echo "       via  $rev ($revtype)"
359         done
360
361         if [ "$fast_forward" ]; then
362                 echo "      from  $oldrev ($oldrev_type)"
363         else
364                 #  1. Existing revisions were removed.  In this case newrev
365                 #     is a subset of oldrev - this is the reverse of a
366                 #     fast-forward, a rewind
367                 #  2. New revisions were added on top of an old revision,
368                 #     this is a rewind and addition.
369
370                 # (1) certainly happened, (2) possibly.  When (2) hasn't
371                 # happened, we set a flag to indicate that no log printout
372                 # is required.
373
374                 echo ""
375
376                 # Find the common ancestor of the old and new revisions and
377                 # compare it with newrev
378                 baserev=$(git merge-base $oldrev $newrev)
379                 rewind_only=""
380                 if [ "$baserev" = "$newrev" ]; then
381                         echo "This update discarded existing revisions and left the branch pointing at"
382                         echo "a previous point in the repository history."
383                         echo ""
384                         echo " * -- * -- N ($newrev)"
385                         echo "            \\"
386                         echo "             O -- O -- O ($oldrev)"
387                         echo ""
388                         echo "The removed revisions are not necessarilly gone - if another reference"
389                         echo "still refers to them they will stay in the repository."
390                         rewind_only=1
391                 else
392                         echo "This update added new revisions after undoing existing revisions.  That is"
393                         echo "to say, the old revision is not a strict subset of the new revision.  This"
394                         echo "situation occurs when you --force push a change and generate a repository"
395                         echo "containing something like this:"
396                         echo ""
397                         echo " * -- * -- B -- O -- O -- O ($oldrev)"
398                         echo "            \\"
399                         echo "             N -- N -- N ($newrev)"
400                         echo ""
401                         echo "When this happens we assume that you've already had alert emails for all"
402                         echo "of the O revisions, and so we here report only the revisions in the N"
403                         echo "branch from the common base, B."
404                 fi
405         fi
406
407         echo ""
408         if [ -z "$rewind_only" ]; then
409                 echo ""
410                 echo $LOGBEGIN
411                 show_new_revisions
412
413                 # XXX: Need a way of detecting whether git rev-list actually
414                 # outputted anything, so that we can issue a "no new
415                 # revisions added by this update" message
416
417                 echo $LOGEND
418
419                 echo "Those revisions listed above that are new to this repository have"
420                 echo "not appeared on any other notification email; so we listed those"
421                 echo "revisions in full, above."
422
423         else
424                 echo "No new revisions were added by this update."
425         fi
426
427         # The diffstat is shown from the old revision to the new revision.
428         # This is to show the truth of what happened in this change.
429         # There's no point showing the stat from the base to the new
430         # revision because the base is effectively a random revision at this
431         # point - the user will be interested in what this revision changed
432         # - including the undoing of previous revisions in the case of
433         # non-fast-forward updates.
434         echo ""
435         echo "Summary of changes:"
436         git diff-tree --stat --summary --find-copies-harder $oldrev..$newrev
437 }
438
439 #
440 # Called for the deletion of a branch
441 #
442 generate_delete_branch_email()
443 {
444         echo "       was  $oldrev"
445         echo ""
446         echo $LOGEND
447         git show -s --pretty=oneline $oldrev
448         echo $LOGEND
449 }
450
451 # --------------- Annotated tags
452
453 #
454 # Called for the creation of an annotated tag
455 #
456 generate_create_atag_email()
457 {
458         echo "        at  $newrev ($newrev_type)"
459
460         generate_atag_email
461 }
462
463 #
464 # Called for the update of an annotated tag (this is probably a rare event
465 # and may not even be allowed)
466 #
467 generate_update_atag_email()
468 {
469         echo "        to  $newrev ($newrev_type)"
470         echo "      from  $oldrev (which is now obsolete)"
471
472         generate_atag_email
473 }
474
475 #
476 # Called when an annotated tag is created or changed
477 #
478 generate_atag_email()
479 {
480         # Use git for-each-ref to pull out the individual fields from the
481         # tag
482         eval $(git for-each-ref --shell --format='
483         tagobject=%(*objectname)
484         tagtype=%(*objecttype)
485         tagger=%(taggername)
486         tagged=%(taggerdate)' $refname
487         )
488
489         echo "   tagging  $tagobject ($tagtype)"
490         case "$tagtype" in
491         commit)
492
493                 # If the tagged object is a commit, then we assume this is a
494                 # release, and so we calculate which tag this tag is
495                 # replacing
496                 prevtag=$(git describe --abbrev=0 $newrev^ 2>/dev/null)
497
498                 if [ -n "$prevtag" ]; then
499                         echo "  replaces  $prevtag"
500                 fi
501                 ;;
502         *)
503                 echo "    length  $(git cat-file -s $tagobject) bytes"
504                 ;;
505         esac
506         echo " tagged by  $tagger"
507         echo "        on  $tagged"
508
509         echo ""
510         echo $LOGBEGIN
511
512         # Show the content of the tag message; this might contain a change
513         # log or release notes so is worth displaying.
514         git cat-file tag $newrev | sed -e '1,/^$/d'
515
516         echo ""
517         case "$tagtype" in
518         commit)
519                 # Only commit tags make sense to have rev-list operations
520                 # performed on them
521                 if [ -n "$prevtag" ]; then
522                         # Show changes since the previous release
523                         git rev-list --pretty=short "$prevtag..$newrev" | git shortlog
524                 else
525                         # No previous tag, show all the changes since time
526                         # began
527                         git rev-list --pretty=short $newrev | git shortlog
528                 fi
529                 ;;
530         *)
531                 # XXX: Is there anything useful we can do for non-commit
532                 # objects?
533                 ;;
534         esac
535
536         echo $LOGEND
537 }
538
539 #
540 # Called for the deletion of an annotated tag
541 #
542 generate_delete_atag_email()
543 {
544         echo "       was  $oldrev"
545         echo ""
546         echo $LOGEND
547         git show -s --pretty=oneline $oldrev
548         echo $LOGEND
549 }
550
551 # --------------- General references
552
553 #
554 # Called when any other type of reference is created (most likely a
555 # non-annotated tag)
556 #
557 generate_create_general_email()
558 {
559         echo "        at  $newrev ($newrev_type)"
560
561         generate_general_email
562 }
563
564 #
565 # Called when any other type of reference is updated (most likely a
566 # non-annotated tag)
567 #
568 generate_update_general_email()
569 {
570         echo "        to  $newrev ($newrev_type)"
571         echo "      from  $oldrev"
572
573         generate_general_email
574 }
575
576 #
577 # Called for creation or update of any other type of reference
578 #
579 generate_general_email()
580 {
581         # Unannotated tags are more about marking a point than releasing a
582         # version; therefore we don't do the shortlog summary that we do for
583         # annotated tags above - we simply show that the point has been
584         # marked, and print the log message for the marked point for
585         # reference purposes
586         #
587         # Note this section also catches any other reference type (although
588         # there aren't any) and deals with them in the same way.
589
590         echo ""
591         if [ "$newrev_type" = "commit" ]; then
592                 echo $LOGBEGIN
593                 git show --no-color --root -s --pretty=medium $newrev
594                 echo $LOGEND
595         else
596                 # What can we do here?  The tag marks an object that is not
597                 # a commit, so there is no log for us to display.  It's
598                 # probably not wise to output git cat-file as it could be a
599                 # binary blob.  We'll just say how big it is
600                 echo "$newrev is a $newrev_type, and is $(git cat-file -s $newrev) bytes long."
601         fi
602 }
603
604 #
605 # Called for the deletion of any other type of reference
606 #
607 generate_delete_general_email()
608 {
609         echo "       was  $oldrev"
610         echo ""
611         echo $LOGEND
612         git show -s --pretty=oneline $oldrev
613         echo $LOGEND
614 }
615
616
617 # --------------- Miscellaneous utilities
618
619 #
620 # Show new revisions as the user would like to see them in the email.
621 #
622 show_new_revisions()
623 {
624         # This shows all log entries that are not already covered by
625         # another ref - i.e. commits that are now accessible from this
626         # ref that were previously not accessible
627         # (see generate_update_branch_email for the explanation of this
628         # command)
629
630         # Revision range passed to rev-list differs for new vs. updated
631         # branches.
632         if [ "$change_type" = create ]
633         then
634                 # Show all revisions exclusive to this (new) branch.
635                 revspec=$newrev
636         else
637                 # Branch update; show revisions not part of $oldrev.
638                 revspec=$oldrev..$newrev
639         fi
640
641         other_branches=$(git for-each-ref --format='%(refname)' refs/heads/ |
642             grep -F -v $refname)
643         git rev-parse --not $other_branches |
644         if [ -z "$custom_showrev" ]
645         then
646                 git rev-list --pretty --stdin $revspec
647         else
648                 git rev-list --stdin $revspec |
649                 while read onerev
650                 do
651                         eval $(printf "$custom_showrev" $onerev)
652                 done
653         fi
654 }
655
656
657 send_mail()
658 {
659         if [ -n "$envelopesender" ]; then
660                 /usr/sbin/sendmail -t -f "$envelopesender"
661         else
662                 /usr/sbin/sendmail -t
663         fi
664 }
665
666 # ---------------------------- main()
667
668 # --- Constants
669 LOGBEGIN="- Log -----------------------------------------------------------------"
670 LOGEND="-----------------------------------------------------------------------"
671
672 # --- Config
673 # Set GIT_DIR either from the working directory, or from the environment
674 # variable.
675 GIT_DIR=$(git rev-parse --git-dir 2>/dev/null)
676 if [ -z "$GIT_DIR" ]; then
677         echo >&2 "fatal: post-receive: GIT_DIR not set"
678         exit 1
679 fi
680
681 projectdesc=$(sed -ne '1p' "$GIT_DIR/description")
682 # Check if the description is unchanged from it's default, and shorten it to
683 # a more manageable length if it is
684 if expr "$projectdesc" : "Unnamed repository.*$" >/dev/null
685 then
686         projectdesc="UNNAMED PROJECT"
687 fi
688
689 recipients=$(git config hooks.mailinglist)
690 announcerecipients=$(git config hooks.announcelist)
691 envelopesender=$(git config hooks.envelopesender)
692 emailprefix=$(git config hooks.emailprefix || echo '[SCM] ')
693 custom_showrev=$(git config hooks.showrev)
694
695 # --- Main loop
696 # Allow dual mode: run from the command line just like the update hook, or
697 # if no arguments are given then run as a hook script
698 if [ -n "$1" -a -n "$2" -a -n "$3" ]; then
699         # Output to the terminal in command line mode - if someone wanted to
700         # resend an email; they could redirect the output to sendmail
701         # themselves
702         PAGER= generate_email $2 $3 $1
703 else
704         while read oldrev newrev refname
705         do
706                 generate_email $oldrev $newrev $refname | send_mail
707         done
708 fi