From a9eb6b1105cd47f00ae45dacda9af8e829ade191 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 11 Apr 2012 09:04:42 -0400
Subject: [PATCH] Reset build identifiers for the next release

---
 groovy/sendmail.groovy |   57 +++++++++++++++++++++++++++++++++++++--------------------
 1 files changed, 37 insertions(+), 20 deletions(-)

diff --git a/groovy/sendmail.groovy b/groovy/sendmail.groovy
index b43f9de..888f664 100644
--- a/groovy/sendmail.groovy
+++ b/groovy/sendmail.groovy
@@ -16,8 +16,10 @@
 import com.gitblit.GitBlit
 import com.gitblit.Keys
 import com.gitblit.models.RepositoryModel
+import com.gitblit.models.TeamModel
 import com.gitblit.models.UserModel
 import com.gitblit.utils.JGitUtils
+import java.text.SimpleDateFormat
 import org.eclipse.jgit.lib.Repository
 import org.eclipse.jgit.lib.Config
 import org.eclipse.jgit.revwalk.RevCommit
@@ -50,12 +52,13 @@
  * chain, "return false" at the appropriate failure points.
  * 
  * Bound Variables:
- *  gitblit		Gitblit Server	 		com.gitblit.GitBlit
- *  repository	Gitblit Repository		com.gitblit.models.RepositoryModel
- *  user		Gitblit User			com.gitblit.models.UserModel
- *  commands	JGit commands 			Collection<org.eclipse.jgit.transport.ReceiveCommand>
- *	url			Base url for Gitblit	String
- *  logger		Logger instance			org.slf4j.Logger
+ *  gitblit			Gitblit Server	 			com.gitblit.GitBlit
+ *  repository		Gitblit Repository			com.gitblit.models.RepositoryModel
+ *  user			Gitblit User				com.gitblit.models.UserModel
+ *  commands		JGit commands 				Collection<org.eclipse.jgit.transport.ReceiveCommand>
+ *	url				Base url for Gitblit		String
+ *  logger			Logs messages to Gitblit 	org.slf4j.Logger
+ *  clientLogger	Logs messages to Git client	com.gitblit.utils.ClientLogger
  *  
  */
 
@@ -87,6 +90,15 @@
 // add all mailing lists defined in gitblit.properties or web.xml
 toAddresses.addAll(gitblit.getStrings(Keys.mail.mailingLists))
 
+// add all team mailing lists
+def teams = gitblit.getRepositoryTeams(repository)
+for (team in teams) {
+	TeamModel model = gitblit.getTeamModel(team)
+	if (model.mailingLists) {
+		toAddresses.addAll(model.mailingLists)
+	}
+}
+
 // add all mailing lists for the repository
 toAddresses.addAll(repository.mailingLists)
 
@@ -103,45 +115,50 @@
 }
 
 // construct a simple text summary of the changes contained in the push
+def branchBreak = '>---------------------------------------------------------------\n'
+def commitBreak = '\n\n ----\n'
 def commitCount = 0
 def changes = ''
-def table = { it.authorIdent.name.padRight(25, ' ') + it.shortMessage + "\n$commitUrl" + it.id.name }
+SimpleDateFormat df = new SimpleDateFormat(gitblit.getString(Keys.web.datetimestampLongFormat, 'EEEE, MMMM d, yyyy h:mm a z'))
+def table = { "\n ${JGitUtils.getDisplayName(it.authorIdent)}\n ${df.format(JGitUtils.getCommitDate(it))}\n\n $it.shortMessage\n\n $commitUrl$it.id.name" }
 for (command in commands) {
 	def ref = command.refName
+	def refType = 'branch'
 	if (ref.startsWith('refs/heads/')) {
 		ref  = command.refName.substring('refs/heads/'.length())
 	} else if (ref.startsWith('refs/tags/')) {
 		ref  = command.refName.substring('refs/tags/'.length())
+		refType = 'tag'
 	}
 		
 	switch (command.type) {
 		case ReceiveCommand.Type.CREATE:
-			def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name)
+			def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name).reverse()
 			commitCount += commits.size()
-			// new branch commits table
-			changes += "$ref created ($commits.size commits)\n\n"
-			changes += commits.collect(table).join('\n\n')
+			// new branch
+			changes += "\n$branchBreak new $refType $ref created ($commits.size commits)\n$branchBreak"
+			changes += commits.collect(table).join(commitBreak)
 			changes += '\n'
 			break
 		case ReceiveCommand.Type.UPDATE:
-			def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name)
+			def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name).reverse()
 			commitCount += commits.size()
 			// fast-forward branch commits table
-			changes += "$ref updated ($commits.size commits)\n\n"
-			changes += commits.collect(table).join('\n\n')
+			changes += "\n$branchBreak $ref $refType updated ($commits.size commits)\n$branchBreak"
+			changes += commits.collect(table).join(commitBreak)
 			changes += '\n'
 			break
 		case ReceiveCommand.Type.UPDATE_NONFASTFORWARD:
-			def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name)
+			def commits = JGitUtils.getRevLog(r, command.oldId.name, command.newId.name).reverse()
 			commitCount += commits.size()
 			// non-fast-forward branch commits table
-			changes += "$ref updated [NON fast-forward] ($commits.size commits)\n\n"
-			changes += commits.collect(table).join('\n\n')
+			changes += "\n$branchBreak $ref $refType updated [NON fast-forward] ($commits.size commits)\n$branchBreak"
+			changes += commits.collect(table).join(commitBreak)
 			changes += '\n'
 			break
 		case ReceiveCommand.Type.DELETE:
-			// deleted branch
-			changes += "$ref deleted\n\n"
+			// deleted branch/tag
+			changes += "\n$branchBreak $ref $refType deleted\n$branchBreak"
 			break
 		default:
 			break
@@ -151,4 +168,4 @@
 r.close()
 
 // tell Gitblit to send the message (Gitblit filters duplicate addresses)
-gitblit.sendMail("$emailprefix $user.username pushed $commitCount commits => $repository.name", "$summaryUrl\n\n$changes", toAddresses)
\ No newline at end of file
+gitblit.sendMail("$emailprefix $user.username pushed $commitCount commits => $repository.name", "$summaryUrl\n$changes", toAddresses)
\ No newline at end of file

--
Gitblit v1.9.1