mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			204 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			204 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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"
 | 
						|
 | 
						|
	"github.com/codegangsta/martini"
 | 
						|
	"github.com/martini-contrib/render"
 | 
						|
	"github.com/martini-contrib/sessions"
 | 
						|
 | 
						|
	"github.com/gogits/gogs/models"
 | 
						|
	"github.com/gogits/gogs/modules/auth"
 | 
						|
	"github.com/gogits/gogs/modules/base"
 | 
						|
	"github.com/gogits/gogs/modules/middleware"
 | 
						|
)
 | 
						|
 | 
						|
func Dashboard(ctx *middleware.Context) {
 | 
						|
	ctx.Data["Title"] = "Dashboard"
 | 
						|
	ctx.Data["PageIsUserDashboard"] = true
 | 
						|
	repos, err := models.GetRepositories(&models.User{Id: ctx.User.Id})
 | 
						|
	if err != nil {
 | 
						|
		ctx.Handle(200, "user.Dashboard", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	ctx.Data["MyRepos"] = repos
 | 
						|
 | 
						|
	feeds, err := models.GetFeeds(ctx.User.Id, 0, false)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Handle(200, "user.Dashboard", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	ctx.Data["Feeds"] = feeds
 | 
						|
	ctx.Render.HTML(200, "user/dashboard", ctx.Data)
 | 
						|
}
 | 
						|
 | 
						|
func Profile(ctx *middleware.Context, params martini.Params) {
 | 
						|
	ctx.Data["Title"] = "Profile"
 | 
						|
 | 
						|
	// TODO: Need to check view self or others.
 | 
						|
	user, err := models.GetUserByName(params["username"])
 | 
						|
	if err != nil {
 | 
						|
		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 {
 | 
						|
			ctx.Handle(200, "user.Profile", err)
 | 
						|
			return
 | 
						|
		}
 | 
						|
		ctx.Data["Feeds"] = feeds
 | 
						|
	default:
 | 
						|
		repos, err := models.GetRepositories(user)
 | 
						|
		if err != nil {
 | 
						|
			ctx.Handle(200, "user.Profile", err)
 | 
						|
			return
 | 
						|
		}
 | 
						|
		ctx.Data["Repos"] = repos
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Render.HTML(200, "user/profile", ctx.Data)
 | 
						|
}
 | 
						|
 | 
						|
func SignIn(ctx *middleware.Context, form auth.LogInForm) {
 | 
						|
	ctx.Data["Title"] = "Log In"
 | 
						|
 | 
						|
	if ctx.Req.Method == "GET" {
 | 
						|
		ctx.Render.HTML(200, "user/signin", ctx.Data)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	if hasErr, ok := ctx.Data["HasError"]; ok && hasErr.(bool) {
 | 
						|
		ctx.Render.HTML(200, "user/signin", ctx.Data)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	user, err := models.LoginUserPlain(form.UserName, form.Password)
 | 
						|
	if err != nil {
 | 
						|
		if err.Error() == models.ErrUserNotExist.Error() {
 | 
						|
			ctx.RenderWithErr("Username or password is not correct", "user/signin", &form)
 | 
						|
			return
 | 
						|
		}
 | 
						|
 | 
						|
		ctx.Handle(200, "user.SignIn", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Session.Set("userId", user.Id)
 | 
						|
	ctx.Session.Set("userName", user.Name)
 | 
						|
	ctx.Render.Redirect("/")
 | 
						|
}
 | 
						|
 | 
						|
func SignOut(r render.Render, session sessions.Session) {
 | 
						|
	session.Delete("userId")
 | 
						|
	session.Delete("userName")
 | 
						|
	r.Redirect("/")
 | 
						|
}
 | 
						|
 | 
						|
func SignUp(ctx *middleware.Context, form auth.RegisterForm) {
 | 
						|
	ctx.Data["Title"] = "Sign Up"
 | 
						|
	ctx.Data["PageIsSignUp"] = true
 | 
						|
 | 
						|
	if ctx.Req.Method == "GET" {
 | 
						|
		ctx.Render.HTML(200, "user/signup", ctx.Data)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	if form.Password != form.RetypePasswd {
 | 
						|
		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)
 | 
						|
	}
 | 
						|
 | 
						|
	if ctx.HasError() {
 | 
						|
		ctx.Render.HTML(200, "user/signup", ctx.Data)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	u := &models.User{
 | 
						|
		Name:   form.UserName,
 | 
						|
		Email:  form.Email,
 | 
						|
		Passwd: form.Password,
 | 
						|
	}
 | 
						|
 | 
						|
	if err := models.RegisterUser(u); err != nil {
 | 
						|
		switch err.Error() {
 | 
						|
		case models.ErrUserAlreadyExist.Error():
 | 
						|
			ctx.RenderWithErr("Username has been already taken", "user/signup", &form)
 | 
						|
		case models.ErrEmailAlreadyUsed.Error():
 | 
						|
			ctx.RenderWithErr("E-mail address has been already used", "user/signup", &form)
 | 
						|
		default:
 | 
						|
			ctx.Handle(200, "user.SignUp", err)
 | 
						|
		}
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Render.Redirect("/user/login")
 | 
						|
}
 | 
						|
 | 
						|
func Delete(ctx *middleware.Context) {
 | 
						|
	ctx.Data["Title"] = "Delete Account"
 | 
						|
 | 
						|
	if ctx.Req.Method == "GET" {
 | 
						|
		ctx.Render.HTML(200, "user/delete", ctx.Data)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	if err := models.DeleteUser(ctx.User); err != nil {
 | 
						|
		ctx.Data["HasError"] = true
 | 
						|
		switch err.Error() {
 | 
						|
		case models.ErrUserOwnRepos.Error():
 | 
						|
			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
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Render.HTML(200, "user/delete", ctx.Data)
 | 
						|
}
 | 
						|
 | 
						|
const (
 | 
						|
	feedTpl = `<i class="icon fa fa-%s"></i>
 | 
						|
                        <div class="info"><span class="meta">%s</span><br>%s</div>`
 | 
						|
)
 | 
						|
 | 
						|
func Feeds(ctx *middleware.Context, form auth.FeedsForm) {
 | 
						|
	actions, err := models.GetFeeds(form.UserId, form.Page*20, false)
 | 
						|
	if err != nil {
 | 
						|
		ctx.Render.JSON(500, err)
 | 
						|
	}
 | 
						|
 | 
						|
	feeds := make([]string, len(actions))
 | 
						|
	for i := range actions {
 | 
						|
		feeds[i] = fmt.Sprintf(feedTpl, base.ActionIcon(actions[i].OpType),
 | 
						|
			base.TimeSince(actions[i].Created), base.ActionDesc(actions[i]))
 | 
						|
	}
 | 
						|
	ctx.Render.JSON(200, &feeds)
 | 
						|
}
 | 
						|
 | 
						|
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"
 | 
						|
}
 |