]> source.dussan.org Git - gitea.git/commitdiff
Clean code
authorUnknown <joe2010xtmf@163.com>
Sun, 16 Mar 2014 06:53:41 +0000 (02:53 -0400)
committerUnknown <joe2010xtmf@163.com>
Sun, 16 Mar 2014 06:53:41 +0000 (02:53 -0400)
gogs.go
models/action.go
update.go

diff --git a/gogs.go b/gogs.go
index 315297b101a4dd287947bce8423afcf55185500d..9d1f2032d6ede38b0357ec591ca8bfad4df94e4b 100644 (file)
--- a/gogs.go
+++ b/gogs.go
@@ -20,7 +20,7 @@ import (
 // Test that go1.1 tag above is included in builds. main.go refers to this definition.
 const go11tag = true
 
-const APP_VER = "0.0.8.0315"
+const APP_VER = "0.0.8.0316.1"
 
 func init() {
        base.AppVer = APP_VER
index 93c1e2768f52ac3b9ebd2239915c8b9f5d9def00..9e075646a6f05deb6684c3a2741e810098ae9e22 100644 (file)
@@ -43,6 +43,7 @@ func (a Action) GetRepoName() string {
        return a.RepoName
 }
 
+// CommitRepoAction records action for commit repository.
 func CommitRepoAction(userId int64, userName string,
        repoId int64, repoName string, msg string) error {
        _, err := orm.InsertOne(&Action{
@@ -57,8 +58,7 @@ func CommitRepoAction(userId int64, userName string,
        return err
 }
 
-// NewRepoAction inserts action for create repository.
-
+// NewRepoAction records action for create repository.
 func NewRepoAction(user *User, repo *Repository) error {
        _, err := orm.InsertOne(&Action{
                UserId:      user.Id,
index 339b3ab94f80f9de19647029916e373453fc560e..477989e861475fd8a32045e475e610b84c249aaf 100644 (file)
--- a/update.go
+++ b/update.go
@@ -1,13 +1,19 @@
+// Copyright 2014 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
 package main
 
 import (
        "os"
        "strconv"
 
-       "github.com/gogits/gogs/models"
-
        "github.com/codegangsta/cli"
+
        git "github.com/gogits/git"
+
+       "github.com/gogits/gogs/models"
+       "github.com/gogits/gogs/modules/log"
 )
 
 var CmdUpdate = cli.Command{
@@ -41,11 +47,18 @@ func runUpdate(*cli.Context) {
        if err != nil {
                return
        }
-       sUserId, _ := strconv.Atoi(userId)
-       sRepoId, _ := strconv.Atoi(repoId)
-       err = models.CommitRepoAction(int64(sUserId), userName,
-               int64(sRepoId), repoName, lastCommit.Message())
+       sUserId, err := strconv.Atoi(userId)
        if err != nil {
-               //TODO: log
+               log.Error("runUpdate.Parse userId: %v", err)
+               return
+       }
+       sRepoId, err := strconv.Atoi(repoId)
+       if err != nil {
+               log.Error("runUpdate.Parse repoId: %v", err)
+               return
+       }
+       if err = models.CommitRepoAction(int64(sUserId), userName,
+               int64(sRepoId), repoName, lastCommit.Message()); err != nil {
+               log.Error("runUpdate.models.CommitRepoAction: %v", err)
        }
 }