mirror of https://github.com/containrrr/watchtower
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			679 B
		
	
	
	
		
			Go
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			679 B
		
	
	
	
		
			Go
		
	
package notifications
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/johntdyer/slackrus"
 | 
						|
	log "github.com/sirupsen/logrus"
 | 
						|
	"github.com/urfave/cli"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	slackType = "slack"
 | 
						|
)
 | 
						|
 | 
						|
type slackTypeNotifier struct {
 | 
						|
	slackrus.SlackrusHook
 | 
						|
}
 | 
						|
 | 
						|
func newSlackNotifier(c *cli.Context, acceptedLogLevels []log.Level) typeNotifier {
 | 
						|
	n := &slackTypeNotifier{
 | 
						|
		SlackrusHook: slackrus.SlackrusHook{
 | 
						|
			HookURL:        c.GlobalString("notification-slack-hook-url"),
 | 
						|
			Username:       c.GlobalString("notification-slack-identifier"),
 | 
						|
			AcceptedLevels: acceptedLogLevels,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	log.AddHook(n)
 | 
						|
 | 
						|
	return n
 | 
						|
}
 | 
						|
 | 
						|
func (s *slackTypeNotifier) StartNotification() {}
 | 
						|
 | 
						|
func (s *slackTypeNotifier) SendNotification() {}
 |