bench-forgejo/routers/user/user.go

214 lines
5.1 KiB
Go
Raw Normal View History

2014-02-18 05:08:50 +05:30
// 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 (
2014-03-15 15:00:59 +05:30
"fmt"
2014-02-18 05:08:50 +05:30
"github.com/codegangsta/martini"
2014-02-18 05:08:50 +05:30
"github.com/martini-contrib/render"
2014-03-03 20:14:51 +05:30
"github.com/martini-contrib/sessions"
2014-02-18 05:08:50 +05:30
"github.com/gogits/gogs/models"
2014-03-06 12:51:44 +05:30
"github.com/gogits/gogs/modules/auth"
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
2014-02-18 05:08:50 +05:30
)
2014-03-15 18:47:16 +05:30
func Dashboard(ctx *middleware.Context) {
ctx.Data["Title"] = "Dashboard"
ctx.Data["PageIsUserDashboard"] = true
repos, err := models.GetRepositories(&models.User{Id: ctx.User.Id})
2014-03-11 11:47:05 +05:30
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Dashboard", err)
2014-03-11 11:47:05 +05:30
return
}
2014-03-15 18:47:16 +05:30
ctx.Data["MyRepos"] = repos
2014-03-15 15:00:59 +05:30
2014-03-15 18:47:16 +05:30
feeds, err := models.GetFeeds(ctx.User.Id, 0, false)
2014-03-15 15:00:59 +05:30
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Dashboard", err)
2014-03-15 15:00:59 +05:30
return
}
2014-03-15 18:47:16 +05:30
ctx.Data["Feeds"] = feeds
ctx.Render.HTML(200, "user/dashboard", ctx.Data)
2014-03-06 19:03:17 +05:30
}
func Profile(ctx *middleware.Context, params martini.Params) {
ctx.Data["Title"] = "Profile"
2014-03-06 23:48:19 +05:30
// TODO: Need to check view self or others.
user, err := models.GetUserByName(params["username"])
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Profile", err)
return
}
ctx.Data["Owner"] = user
tab := ctx.Query("tab")
ctx.Data["TabName"] = tab
switch tab {
case "activity":
feeds, err := models.GetFeeds(user.Id, 0, true)
if err != nil {
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.Profile", err)
return
}
ctx.Data["Feeds"] = feeds
default:
2014-03-15 21:43:45 +05:30
repos, err := models.GetRepositories(user)
if err != nil {
ctx.Handle(200, "user.Profile", err)
return
}
ctx.Data["Repos"] = repos
2014-03-15 10:20:51 +05:30
}
ctx.Render.HTML(200, "user/profile", ctx.Data)
}
2014-03-15 20:04:33 +05:30
func SignIn(ctx *middleware.Context, form auth.LogInForm) {
2014-03-15 18:47:16 +05:30
ctx.Data["Title"] = "Log In"
2014-03-06 22:12:14 +05:30
2014-03-15 18:47:16 +05:30
if ctx.Req.Method == "GET" {
ctx.Render.HTML(200, "user/signin", ctx.Data)
2014-03-06 22:12:14 +05:30
return
}
2014-03-15 18:47:16 +05:30
if hasErr, ok := ctx.Data["HasError"]; ok && hasErr.(bool) {
ctx.Render.HTML(200, "user/signin", ctx.Data)
2014-03-06 22:12:14 +05:30
return
}
user, err := models.LoginUserPlain(form.UserName, form.Password)
if err != nil {
if err.Error() == models.ErrUserNotExist.Error() {
2014-03-15 20:22:14 +05:30
ctx.RenderWithErr("Username or password is not correct", "user/signin", &form)
return
}
2014-03-06 22:12:14 +05:30
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.SignIn", err)
2014-03-06 22:12:14 +05:30
return
}
2014-03-06 22:12:14 +05:30
2014-03-15 20:04:33 +05:30
ctx.Session.Set("userId", user.Id)
ctx.Session.Set("userName", user.Name)
ctx.Render.Redirect("/")
2014-02-18 05:08:50 +05:30
}
2014-03-06 23:48:19 +05:30
func SignOut(r render.Render, session sessions.Session) {
session.Delete("userId")
session.Delete("userName")
r.Redirect("/")
}
2014-03-15 20:04:33 +05:30
func SignUp(ctx *middleware.Context, form auth.RegisterForm) {
ctx.Data["Title"] = "Sign Up"
ctx.Data["PageIsSignUp"] = true
2014-03-06 12:51:44 +05:30
2014-03-15 20:04:33 +05:30
if ctx.Req.Method == "GET" {
ctx.Render.HTML(200, "user/signup", ctx.Data)
2014-02-18 05:08:50 +05:30
return
}
2014-03-06 21:40:35 +05:30
if form.Password != form.RetypePasswd {
2014-03-15 20:04:33 +05:30
ctx.Data["HasError"] = true
ctx.Data["Err_Password"] = true
ctx.Data["Err_RetypePasswd"] = true
ctx.Data["ErrorMsg"] = "Password and re-type password are not same"
auth.AssignForm(form, ctx.Data)
2014-03-06 21:40:35 +05:30
}
2014-03-15 20:22:14 +05:30
if ctx.HasError() {
2014-03-15 20:04:33 +05:30
ctx.Render.HTML(200, "user/signup", ctx.Data)
2014-03-06 12:51:44 +05:30
return
2014-02-19 04:01:16 +05:30
}
2014-03-04 05:33:08 +05:30
2014-03-06 12:51:44 +05:30
u := &models.User{
2014-03-06 21:40:35 +05:30
Name: form.UserName,
2014-03-06 12:51:44 +05:30
Email: form.Email,
Passwd: form.Password,
2014-02-19 04:01:16 +05:30
}
2014-03-06 12:51:44 +05:30
if err := models.RegisterUser(u); err != nil {
2014-03-06 21:40:35 +05:30
switch err.Error() {
case models.ErrUserAlreadyExist.Error():
2014-03-15 20:22:14 +05:30
ctx.RenderWithErr("Username has been already taken", "user/signup", &form)
2014-03-06 21:40:35 +05:30
case models.ErrEmailAlreadyUsed.Error():
2014-03-15 20:22:14 +05:30
ctx.RenderWithErr("E-mail address has been already used", "user/signup", &form)
2014-03-06 21:40:35 +05:30
default:
2014-03-15 18:47:16 +05:30
ctx.Handle(200, "user.SignUp", err)
2014-03-06 12:51:44 +05:30
}
2014-02-19 04:01:16 +05:30
return
}
2014-03-15 20:04:33 +05:30
ctx.Render.Redirect("/user/login")
2014-02-18 05:08:50 +05:30
}
2014-02-19 23:43:02 +05:30
2014-03-15 20:04:33 +05:30
func Delete(ctx *middleware.Context) {
ctx.Data["Title"] = "Delete Account"
2014-03-15 20:04:33 +05:30
if ctx.Req.Method == "GET" {
ctx.Render.HTML(200, "user/delete", ctx.Data)
2014-02-20 08:15:43 +05:30
return
}
2014-03-16 20:05:25 +05:30
tmpUser := models.User{Passwd: ctx.Query("password")}
tmpUser.EncodePasswd()
if len(tmpUser.Passwd) == 0 || tmpUser.Passwd != ctx.User.Passwd {
2014-03-15 20:04:33 +05:30
ctx.Data["HasError"] = true
2014-03-16 20:05:25 +05:30
ctx.Data["ErrorMsg"] = "Password is not correct. Make sure you are owner of this account."
} else {
if err := models.DeleteUser(ctx.User); err != nil {
ctx.Data["HasError"] = true
switch err {
case models.ErrUserOwnRepos:
ctx.Data["ErrorMsg"] = "Your account still have ownership of repository, you have to delete or transfer them first."
default:
ctx.Handle(200, "user.Delete", err)
return
}
} else {
ctx.Render.Redirect("/")
2014-03-11 21:10:47 +05:30
return
}
}
ctx.Render.HTML(200, "user/delete", ctx.Data)
2014-02-19 23:43:02 +05:30
}
2014-03-15 15:00:59 +05:30
const (
feedTpl = `<i class="icon fa fa-%s"></i>
<div class="info"><span class="meta">%s</span><br>%s</div>`
)
2014-03-15 20:04:33 +05:30
func Feeds(ctx *middleware.Context, form auth.FeedsForm) {
2014-03-15 15:00:59 +05:30
actions, err := models.GetFeeds(form.UserId, form.Page*20, false)
if err != nil {
2014-03-15 20:04:33 +05:30
ctx.Render.JSON(500, err)
}
2014-03-15 15:00:59 +05:30
feeds := make([]string, len(actions))
for i := range actions {
feeds[i] = fmt.Sprintf(feedTpl, base.ActionIcon(actions[i].OpType),
2014-03-16 21:37:35 +05:30
base.TimeSince(actions[i].Created), base.ActionDesc(actions[i], ctx.User.AvatarLink()))
2014-03-15 15:00:59 +05:30
}
2014-03-15 20:04:33 +05:30
ctx.Render.JSON(200, &feeds)
}
2014-03-16 13:11:22 +05:30
func Issues(ctx *middleware.Context) string {
return "This is issues page"
}
func Pulls(ctx *middleware.Context) string {
return "This is pulls page"
}
func Stars(ctx *middleware.Context) string {
return "This is stars page"
}