gitea/routers/user/user.go

178 lines
3.8 KiB
Go
Raw Normal View History

2014-02-18 00:38:50 +01:00
// 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 user
import (
"fmt"
"net/http"
2014-03-06 08:21:44 +01:00
//"github.com/martini-contrib/binding"
2014-02-18 00:38:50 +01:00
"github.com/martini-contrib/render"
2014-03-03 15:44:51 +01:00
"github.com/martini-contrib/sessions"
2014-02-18 00:38:50 +01:00
"github.com/gogits/gogs/models"
2014-03-06 08:21:44 +01:00
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
2014-02-18 23:31:16 +01:00
"github.com/gogits/gogs/utils/log"
2014-02-18 00:38:50 +01:00
)
2014-03-06 14:33:17 +01:00
func Dashboard(r render.Render, data base.TmplData, session sessions.Session) {
if !IsSignedIn(session) {
// todo : direct to logout
r.Redirect("/")
return
}
data["IsSigned"] = true
data["SignedUserId"] = SignedInId(session)
data["SignedUserName"] = SignedInName(session)
data["Title"] = "Dashboard"
r.HTML(200, "user/dashboard", data)
}
func Profile(r render.Render) {
r.HTML(200, "user/profile", map[string]interface{}{
"Title": "Username",
})
return
}
2014-03-06 09:17:15 +01:00
func IsSignedIn(session sessions.Session) bool {
2014-03-06 09:24:08 +01:00
return SignedInId(session) > 0
}
func SignedInId(session sessions.Session) int64 {
userId := session.Get("userId")
if userId == nil {
return 0
2014-03-06 09:17:15 +01:00
}
2014-03-06 09:24:08 +01:00
if s, ok := userId.(int64); ok {
return s
2014-03-06 09:17:15 +01:00
}
2014-03-06 09:24:08 +01:00
return 0
2014-03-06 09:17:15 +01:00
}
func SignedInName(session sessions.Session) string {
userName := session.Get("userName")
if userName == nil {
return ""
}
if s, ok := userName.(string); ok {
return s
}
return ""
}
2014-03-06 09:24:08 +01:00
func SignedInUser(session sessions.Session) *models.User {
id := SignedInId(session)
if id <= 0 {
return nil
}
user, err := models.GetUserById(id)
if err != nil {
return nil
}
return user
}
2014-03-03 15:44:51 +01:00
func SignIn(req *http.Request, r render.Render, session sessions.Session) {
2014-03-06 14:33:17 +01:00
// if logged, do not show login page
if IsSignedIn(session) {
r.Redirect("/")
return
}
var (
errString string
account string
)
2014-03-06 14:33:17 +01:00
// if post, do login action
if req.Method == "POST" {
account = req.FormValue("account")
2014-03-03 16:24:29 +01:00
user, err := models.LoginUserPlain(account, req.FormValue("passwd"))
if err == nil {
// login success
2014-03-03 16:24:29 +01:00
session.Set("userId", user.Id)
session.Set("userName", user.Name)
r.Redirect("/")
return
}
// login fail
errString = fmt.Sprintf("%v", err)
}
2014-03-06 14:33:17 +01:00
// if get or error post, show login page
r.HTML(200, "user/signin", map[string]interface{}{
"Title": "Log In",
"Error": errString,
"Account": account,
})
2014-02-18 00:38:50 +01:00
}
2014-03-06 08:21:44 +01:00
func SignUp(form auth.RegisterForm, data base.TmplData, req *http.Request, r render.Render) {
data["Title"] = "Sign Up"
2014-02-18 00:38:50 +01:00
if req.Method == "GET" {
2014-03-04 01:03:08 +01:00
r.HTML(200, "user/signup", data)
2014-02-18 00:38:50 +01:00
return
}
2014-03-06 17:10:35 +01:00
if form.Password != form.RetypePasswd {
data["HasError"] = true
data["Err_Password"] = true
data["Err_RetypePasswd"] = true
data["ErrorMsg"] = "Password and re-type password are not same"
auth.AssignForm(form, data)
}
2014-03-06 08:21:44 +01:00
if hasErr, ok := data["HasError"]; ok && hasErr.(bool) {
r.HTML(200, "user/signup", data)
return
2014-02-18 23:31:16 +01:00
}
2014-03-04 01:03:08 +01:00
2014-03-06 08:21:44 +01:00
u := &models.User{
2014-03-06 17:10:35 +01:00
Name: form.UserName,
2014-03-06 08:21:44 +01:00
Email: form.Email,
Passwd: form.Password,
2014-02-18 23:31:16 +01:00
}
2014-03-06 08:21:44 +01:00
if err := models.RegisterUser(u); err != nil {
2014-03-06 17:10:35 +01:00
data["HasError"] = true
auth.AssignForm(form, data)
switch err.Error() {
case models.ErrUserAlreadyExist.Error():
2014-03-06 08:21:44 +01:00
data["Err_Username"] = true
data["ErrorMsg"] = "Username has been already taken"
r.HTML(200, "user/signup", data)
2014-03-06 17:10:35 +01:00
case models.ErrEmailAlreadyUsed.Error():
data["Err_Email"] = true
data["ErrorMsg"] = "E-mail address has been already used"
r.HTML(200, "user/signup", data)
default:
data["ErrorMsg"] = err
log.Error("user.SignUp: %v", data)
r.HTML(500, "base/error", nil)
2014-03-06 08:21:44 +01:00
}
2014-02-18 23:31:16 +01:00
return
}
2014-03-06 08:21:44 +01:00
r.Redirect("/user/login")
2014-02-18 00:38:50 +01:00
}
2014-02-19 19:13:02 +01:00
2014-02-20 03:45:43 +01:00
func Delete(req *http.Request, r render.Render) {
if req.Method == "GET" {
r.HTML(200, "user/delete", map[string]interface{}{
"Title": "Delete user",
})
return
}
2014-02-19 19:13:02 +01:00
u := &models.User{}
err := models.DeleteUser(u)
r.HTML(403, "status/403", map[string]interface{}{
"Title": fmt.Sprintf("%v", err),
})
}