2021-06-21 18:46:10 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-06-21 18:46:10 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-10-31 14:46:23 +00:00
|
|
|
)
|
|
|
|
|
2021-06-21 18:46:10 +01:00
|
|
|
func (m *Module) baseHandler(c *gin.Context) {
|
2022-05-30 13:41:24 +01:00
|
|
|
host := config.GetHost()
|
2021-12-07 12:31:39 +00:00
|
|
|
instance, err := m.processor.InstanceGet(c.Request.Context(), host)
|
2021-06-21 18:46:10 +01:00
|
|
|
if err != nil {
|
2022-06-09 11:51:19 +01:00
|
|
|
api.ErrorHandler(c, gtserror.NewErrorInternalError(err), m.processor.InstanceGet)
|
2021-06-21 18:46:10 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.HTML(http.StatusOK, "index.tmpl", gin.H{
|
2021-09-13 13:45:33 +01:00
|
|
|
"instance": instance,
|
2021-06-21 18:46:10 +01:00
|
|
|
})
|
|
|
|
}
|