2c8344faf9
They are in different folders and all loaded in controllers/router.go. This means that you only have to create a folder with a router.go file and import this folder in main router.go to add a handler.
29 lignes
813 o
Go
29 lignes
813 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(user) {
|
|
followAction = "followed"
|
|
currentUser.SetFollow(user)
|
|
} else {
|
|
followAction = "unfollowed"
|
|
currentUser.RemoveFollow(user)
|
|
}
|
|
}
|
|
url := "/user/" + strconv.Itoa(int(user.ID)) + "/" + user.Username + "?" + followAction
|
|
c.Redirect(http.StatusSeeOther, url)
|
|
}
|