wide/main.go

120 lines
2.9 KiB
Go
Raw Normal View History

2014-08-18 17:45:43 +04:00
package main
import (
2014-09-02 18:57:30 +04:00
"flag"
2014-09-07 13:07:25 +04:00
"html/template"
"math/rand"
"net/http"
"runtime"
"strconv"
2014-08-18 17:51:03 +04:00
"github.com/b3log/wide/conf"
"github.com/b3log/wide/editor"
"github.com/b3log/wide/file"
2014-08-25 18:17:02 +04:00
"github.com/b3log/wide/i18n"
2014-08-18 17:51:03 +04:00
"github.com/b3log/wide/output"
"github.com/b3log/wide/shell"
2014-08-31 13:39:39 +04:00
"github.com/b3log/wide/user"
2014-08-18 17:45:43 +04:00
"github.com/golang/glog"
)
2014-09-02 18:57:30 +04:00
// Wide 中唯一一个 init 函数.
func init() {
flag.Set("logtostderr", "true")
2014-09-13 12:52:12 +04:00
flag.Set("v", "1")
2014-09-13 12:50:18 +04:00
conf.Load()
2014-09-02 18:57:30 +04:00
flag.Parse()
}
2014-09-12 13:10:58 +04:00
// Wide 首页.
2014-08-18 17:45:43 +04:00
func indexHandler(w http.ResponseWriter, r *http.Request) {
2014-09-02 18:57:30 +04:00
i18n.Load()
2014-09-01 06:47:59 +04:00
model := map[string]interface{}{"Wide": conf.Wide, "i18n": i18n.GetLangs(r), "locale": i18n.GetLocale(r)}
2014-08-25 18:17:02 +04:00
2014-08-31 13:39:39 +04:00
session, _ := user.Session.Get(r, "wide-session")
2014-08-18 17:45:43 +04:00
2014-09-01 14:55:11 +04:00
if session.IsNew {
2014-09-02 05:56:36 +04:00
// TODO: 写死以 admin 作为用户登录
2014-09-01 14:55:11 +04:00
name := conf.Wide.Users[0].Name
session.Values["username"] = name
session.Values["id"] = strconv.Itoa(rand.Int())
2014-09-02 05:56:36 +04:00
// 一天过期
session.Options.MaxAge = 60 * 60 * 24
glog.Infof("Created a session [%s] for user [%s]", session.Values["id"].(string), name)
2014-09-01 14:55:11 +04:00
}
2014-08-18 17:45:43 +04:00
session.Save(r, w)
2014-09-01 06:47:59 +04:00
t, err := template.ParseFiles("view/index.html")
2014-08-18 17:45:43 +04:00
if nil != err {
glog.Error(err)
http.Error(w, err.Error(), 500)
return
}
2014-08-25 18:17:02 +04:00
t.Execute(w, model)
2014-08-18 17:45:43 +04:00
}
func main() {
2014-09-02 18:57:30 +04:00
runtime.GOMAXPROCS(conf.Wide.MaxProcs)
defer glog.Flush()
2014-09-01 06:47:59 +04:00
// 静态资源
2014-08-18 17:45:43 +04:00
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
2014-09-01 17:40:10 +04:00
// 库资源
http.Handle("/data/", http.StripPrefix("/data/", http.FileServer(http.Dir("data"))))
2014-09-01 06:47:59 +04:00
// IDE 首页
2014-08-18 17:45:43 +04:00
http.HandleFunc("/", indexHandler)
2014-09-01 06:47:59 +04:00
// 运行相关
2014-08-22 07:57:05 +04:00
http.HandleFunc("/build", output.BuildHandler)
2014-08-18 17:45:43 +04:00
http.HandleFunc("/run", output.RunHandler)
2014-09-05 08:18:50 +04:00
http.HandleFunc("/go/get", output.GoGetHandler)
2014-09-09 13:01:22 +04:00
http.HandleFunc("/go/install", output.GoInstallHandler)
2014-08-18 17:45:43 +04:00
http.HandleFunc("/output/ws", output.WSHandler)
2014-09-01 06:47:59 +04:00
// 文件树
2014-08-18 17:45:43 +04:00
http.HandleFunc("/files", file.GetFiles)
http.HandleFunc("/file", file.GetFile)
http.HandleFunc("/file/save", file.SaveFile)
http.HandleFunc("/file/new", file.NewFile)
http.HandleFunc("/file/remove", file.RemoveFile)
2014-09-01 06:47:59 +04:00
// 编辑器
2014-08-18 17:45:43 +04:00
http.HandleFunc("/editor/ws", editor.WSHandler)
2014-09-06 20:13:25 +04:00
http.HandleFunc("/go/fmt", editor.GoFmtHandler)
2014-09-01 06:47:59 +04:00
http.HandleFunc("/autocomplete", editor.AutocompleteHandler)
2014-09-12 11:55:52 +04:00
http.HandleFunc("/find/decl", editor.FindDeclarationHandler)
http.HandleFunc("/find/usages", editor.FindUsagesHandler)
2014-09-07 13:07:25 +04:00
http.HandleFunc("/html/fmt", editor.HTMLFmtHandler)
2014-09-07 14:13:55 +04:00
http.HandleFunc("/json/fmt", editor.JSONFmtHandler)
2014-08-18 17:45:43 +04:00
2014-09-01 06:47:59 +04:00
// Shell
2014-08-18 17:45:43 +04:00
http.HandleFunc("/shell/ws", shell.WSHandler)
2014-09-05 10:33:43 +04:00
http.HandleFunc("/shell", shell.IndexHandler)
2014-08-18 17:45:43 +04:00
2014-09-01 06:47:59 +04:00
// 用户
2014-08-31 14:50:38 +04:00
http.HandleFunc("/user/new", user.AddUser)
http.HandleFunc("/user/repos/init", user.InitGitRepos)
2014-09-01 06:47:59 +04:00
// 文档
http.Handle("/doc/", http.StripPrefix("/doc/", http.FileServer(http.Dir("doc"))))
2014-09-08 07:37:34 +04:00
glog.V(0).Infof("Wide is running [%s]", conf.Wide.Server)
2014-08-31 13:23:14 +04:00
2014-08-18 17:45:43 +04:00
err := http.ListenAndServe(conf.Wide.Server, nil)
if err != nil {
glog.Fatal(err)
}
}