mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	* Add SendSync method Usefull to have when you need to be confident that message was sent. * Add sendmail command * add checks that if either title or content is empty then error out * Add a confirmation step * Add --force option to bypass confirm step * Move implementation of runSendMail to a different file * Add copyrighting comment * Make content optional Print waring if it's empty or haven't been set up. The warning will be skiped if there's a `--force` flag. * Fix import style Co-authored-by: 6543 <6543@obermui.de> * Use batch when getting all users IterateUsers uses batching by default. Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Send emails one by one instead of as one chunck Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Send messages concurantly Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Use SendAsync+Flush instead of SendSync Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Add timeout parameter to sendemail command Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Fix spelling mistake Signed-off-by: Maxim Zhiburt <zhiburt@gmail.com> * Update cmd/admin.go Co-authored-by: 6543 <6543@obermui.de> * Connect to a running Gitea instance * Fix mispelling * Add copyright comment Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea 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 private includes all internal routes. The package name internal is ideal but Golang is not allowed, so we use private as package name instead.
 | 
						|
package private
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	"code.gitea.io/gitea/modules/private"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
 | 
						|
	"gitea.com/macaron/binding"
 | 
						|
	"gitea.com/macaron/macaron"
 | 
						|
)
 | 
						|
 | 
						|
// CheckInternalToken check internal token is set
 | 
						|
func CheckInternalToken(ctx *macaron.Context) {
 | 
						|
	tokens := ctx.Req.Header.Get("Authorization")
 | 
						|
	fields := strings.Fields(tokens)
 | 
						|
	if len(fields) != 2 || fields[0] != "Bearer" || fields[1] != setting.InternalToken {
 | 
						|
		log.Debug("Forbidden attempt to access internal url: Authorization header: %s", tokens)
 | 
						|
		ctx.Error(403)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// RegisterRoutes registers all internal APIs routes to web application.
 | 
						|
// These APIs will be invoked by internal commands for example `gitea serv` and etc.
 | 
						|
func RegisterRoutes(m *macaron.Macaron) {
 | 
						|
	bind := binding.Bind
 | 
						|
 | 
						|
	m.Group("/", func() {
 | 
						|
		m.Post("/ssh/authorized_keys", AuthorizedPublicKeyByContent)
 | 
						|
		m.Post("/ssh/:id/update/:repoid", UpdatePublicKeyInRepo)
 | 
						|
		m.Post("/hook/pre-receive/:owner/:repo", bind(private.HookOptions{}), HookPreReceive)
 | 
						|
		m.Post("/hook/post-receive/:owner/:repo", bind(private.HookOptions{}), HookPostReceive)
 | 
						|
		m.Post("/hook/set-default-branch/:owner/:repo/:branch", SetDefaultBranch)
 | 
						|
		m.Get("/serv/none/:keyid", ServNoCommand)
 | 
						|
		m.Get("/serv/command/:keyid/:owner/:repo", ServCommand)
 | 
						|
		m.Post("/manager/shutdown", Shutdown)
 | 
						|
		m.Post("/manager/restart", Restart)
 | 
						|
		m.Post("/manager/flush-queues", bind(private.FlushOptions{}), FlushQueues)
 | 
						|
		m.Post("/manager/pause-logging", PauseLogging)
 | 
						|
		m.Post("/manager/resume-logging", ResumeLogging)
 | 
						|
		m.Post("/manager/release-and-reopen-logging", ReleaseReopenLogging)
 | 
						|
		m.Post("/manager/add-logger", bind(private.LoggerOptions{}), AddLogger)
 | 
						|
		m.Post("/manager/remove-logger/:group/:name", RemoveLogger)
 | 
						|
		m.Post("/mail/send", SendEmail)
 | 
						|
	}, CheckInternalToken)
 | 
						|
}
 |