530fd0555a
* Add files via upload * change url of files * Delete topbar.png * Delete dl-link.png * Add files via upload * sukebei colors for classic theme * stylisation for follow link on torrents * Update main.css * Update tomorrow.css * Update follow.go * Update profile.jet.html * Update user.go * Update view.jet.html * Update view.go * Update view.jet.html * Update view.jet.html * Update tomorrow.css
32 lignes
900 o
Go
32 lignes
900 o
Go
package userController
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/NyaaPantsu/nyaa/controllers/router"
|
|
"github.com/NyaaPantsu/nyaa/models/users"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// UserFollowHandler : Controller to follow/unfollow users, need user id to follow
|
|
func UserFollowHandler(c *gin.Context) {
|
|
var followAction string
|
|
id, _ := strconv.ParseUint(c.Param("id"), 10, 32)
|
|
currentUser := router.GetUser(c)
|
|
user, _, errorUser := users.FindForAdmin(uint(id))
|
|
if errorUser == nil && user.ID > 0 {
|
|
if !currentUser.IsFollower(uint(id)) {
|
|
followAction = "followed"
|
|
currentUser.SetFollow(user)
|
|
} else {
|
|
followAction = "unfollowed"
|
|
currentUser.RemoveFollow(user)
|
|
}
|
|
}
|
|
url := "/user/" + strconv.Itoa(int(user.ID)) + "/" + user.Username + "?" + followAction
|
|
if c.Query("id") != "" {
|
|
url = "/view/" + c.Query("id") + "?" + followAction
|
|
}
|
|
c.Redirect(http.StatusSeeOther, url)
|
|
}
|