Browse Source

Init commit

Unknown 11 years ago
parent
commit
96b317d3ff
8 changed files with 84 additions and 5 deletions
  1. 1 0
      .gitignore
  2. 5 1
      conf/app.ini
  3. 24 2
      gogs.go
  4. 6 2
      routers/home.go
  5. 2 0
      templates/base/base.tmpl
  6. 1 0
      templates/home.tmpl
  7. 24 0
      utils/conf.go
  8. 21 0
      utils/log/log.go

+ 1 - 0
.gitignore

@@ -1,3 +1,4 @@
 gogs
 *.exe
 *.exe~
+.DS_Store

+ 5 - 1
conf/app.ini

@@ -1 +1,5 @@
-APP_NAME = Go Git Service
+APP_NAME = Go Git Service
+
+[server]
+HTTP_ADDR = 
+HTTP_PORT = 3000

+ 24 - 2
gogs.go

@@ -5,15 +5,37 @@
 package main
 
 import (
+	"fmt"
+	"net/http"
+
 	"github.com/codegangsta/martini"
+	"github.com/martini-contrib/render"
 
 	"github.com/gogits/gogs/routers"
+	"github.com/gogits/gogs/utils"
+	"github.com/gogits/gogs/utils/log"
 )
 
 const APP_VER = "0.0.0.0212"
 
+func init() {
+
+}
+
 func main() {
+	log.Info("App Name: %s", utils.Cfg.MustValue("", "APP_NAME"))
+
 	m := martini.Classic()
-	m.Get("/", routers.HomeGet)
-	m.Run()
+
+	// Middleware.
+	m.Use(render.Renderer())
+
+	// Routers.
+	m.Get("/", routers.Home)
+
+	listenAddr := fmt.Sprintf("%s:%s",
+		utils.Cfg.MustValue("server", "HTTP_ADDR"),
+		utils.Cfg.MustValue("server", "HTTP_PORT", "3000"))
+	log.Info("Listen: %s", listenAddr)
+	http.ListenAndServe(listenAddr, m)
 }

+ 6 - 2
routers/home.go

@@ -4,6 +4,10 @@
 
 package routers
 
-func HomeGet() string {
-	return "Hello world!"
+import (
+	"github.com/martini-contrib/render"
+)
+
+func Home(r render.Render) {
+	r.HTML(200, "home", map[string]interface{}{})
 }

+ 2 - 0
templates/base/base.tmpl

@@ -0,0 +1,2 @@
+this is base.html
+Hello world!

+ 1 - 0
templates/home.tmpl

@@ -0,0 +1 @@
+{{template "base/base"}}

+ 24 - 0
utils/conf.go

@@ -0,0 +1,24 @@
+// 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 utils
+
+import (
+	"fmt"
+	"os"
+
+	"github.com/Unknwon/goconfig"
+)
+
+var Cfg *goconfig.ConfigFile
+
+func init() {
+	var err error
+	Cfg, err = goconfig.LoadConfigFile("conf/app.ini")
+	if err != nil {
+		fmt.Println("Cannot load config file 'app.ini'")
+		os.Exit(2)
+	}
+	Cfg.BlockMode = false
+}

+ 21 - 0
utils/log/log.go

@@ -0,0 +1,21 @@
+// 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 log is a wrapper of logs for short calling name.
+package log
+
+import (
+	"github.com/gogits/logs"
+)
+
+var logger *logs.BeeLogger
+
+func init() {
+	logger = logs.NewLogger(10000)
+	logger.SetLogger("console", "")
+}
+
+func Info(format string, v ...interface{}) {
+	logger.Info(format, v...)
+}