mirror of
https://github.com/kataras/iris.git
synced 2025-04-04 14:13:09 +02:00
Read HISTORY.md it contains a breaking change, second parameter of HandleDir should be iris.Dir(...) instead of just a string relative to: https://github.com/kataras/iris/issues/1556#issuecomment-661057446 Former-commit-id: 14b48a06fb3b99287dff543932be2937a64233b9
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/kataras/iris/v12/_examples/mvc/login-mvc-single-responsibility/user"
|
|
|
|
"github.com/kataras/iris/v12"
|
|
"github.com/kataras/iris/v12/mvc"
|
|
"github.com/kataras/iris/v12/sessions"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
// You got full debug messages, useful when using MVC and you want to make
|
|
// sure that your code is aligned with the Iris' MVC Architecture.
|
|
app.Logger().SetLevel("debug")
|
|
|
|
app.RegisterView(iris.HTML("./views", ".html").Layout("shared/layout.html"))
|
|
|
|
app.HandleDir("/public", iris.Dir("./public"))
|
|
|
|
userRouter := app.Party("/user")
|
|
{
|
|
manager := sessions.New(sessions.Config{
|
|
Cookie: "sessioncookiename",
|
|
Expires: 24 * time.Hour,
|
|
})
|
|
userRouter.Use(manager.Handler())
|
|
mvc.Configure(userRouter, configureUserMVC)
|
|
}
|
|
|
|
// http://localhost:8080/user/register
|
|
// http://localhost:8080/user/login
|
|
// http://localhost:8080/user/me
|
|
// http://localhost:8080/user/logout
|
|
// http://localhost:8080/user/1
|
|
app.Listen(":8080", configure)
|
|
}
|
|
|
|
func configureUserMVC(userApp *mvc.Application) {
|
|
userApp.Register(
|
|
user.NewDataSource(),
|
|
)
|
|
userApp.Handle(new(user.Controller))
|
|
}
|
|
|
|
func configure(app *iris.Application) {
|
|
app.Configure(
|
|
iris.WithOptimizations,
|
|
iris.WithFireMethodNotAllowed,
|
|
iris.WithLowercaseRouting,
|
|
iris.WithPathIntelligence,
|
|
iris.WithTunneling,
|
|
)
|
|
}
|