bench-forgejo/routers/install.go

34 lines
823 B
Go
Raw Normal View History

2014-03-25 14:21:42 +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 routers
2014-03-28 16:56:22 +05:30
import (
"errors"
"github.com/gogits/gogs/models"
2014-03-29 04:10:31 +05:30
"github.com/gogits/gogs/modules/auth"
2014-03-28 16:56:22 +05:30
"github.com/gogits/gogs/modules/base"
"github.com/gogits/gogs/modules/middleware"
)
2014-03-29 04:10:31 +05:30
func Install(ctx *middleware.Context, form auth.InstallForm) {
2014-03-28 16:56:22 +05:30
if base.InstallLock {
ctx.Handle(404, "install.Install", errors.New("Installation is prohibited"))
return
}
2014-03-25 14:21:42 +05:30
ctx.Data["Title"] = "Install"
2014-03-28 16:56:22 +05:30
ctx.Data["DbCfg"] = models.DbCfg
ctx.Data["RepoRootPath"] = base.RepoRootPath
ctx.Data["RunUser"] = base.RunUser
2014-03-28 18:36:48 +05:30
ctx.Data["AppUrl"] = base.AppUrl
2014-03-28 16:56:22 +05:30
ctx.Data["PageIsInstall"] = true
if ctx.Req.Method == "GET" {
ctx.HTML(200, "install")
return
}
2014-03-25 14:21:42 +05:30
}