Example #1
0
// Broadcast listens for private messages and broadcasts them to a list of targets
func Broadcast(chac chan api.Action, chev chan api.Event, config Config) {
	a := api.Action{
		Type:     api.A_SAY,
		Priority: api.PRIORITY_LOW,
	}
	for {
		e := <-chev
		if e.Type == api.E_PRIVMSG && len(e.Channel) == 0 {
			for server, targets := range config.Targets {
				a.Server = server
				a.Channel = ""
				a.User = ""
				for _, target := range targets {
					if strings.Index(target, "#") == 1 {
						a.Channel = target
					} else {
						a.User = target
					}
					a.Data = fmt.Sprintf("broadcast> %s: %s", e.User, e.Data)
					chac <- a
				}
			}
		}
	}
}
Example #2
0
func newActionJOIN(srv *string, channel *string) *api.Action {
	result := new(api.Action)
	result.Server = *srv
	result.Channel = *channel
	result.Type = api.A_JOIN
	return result
}
Example #3
0
func newActionPART(srv *string, channel *string, msg *string) *api.Action {
	result := new(api.Action)
	result.Server = *srv
	result.Channel = *channel
	if msg != nil {
		result.Data = *msg
	}
	result.Type = api.A_PART
	return result
}
Example #4
0
func newActionKICK(srv *string, channel *string, user *string, msg *string) *api.Action {
	result := new(api.Action)
	result.Server = *srv
	result.Channel = *channel
	result.User = *user
	if msg != nil {
		result.Data = *msg
	}
	result.Type = api.A_KICK
	return result
}
Example #5
0
func newActionPRIVMSG(srv *string, channel *string, msg *string) *api.Action {
	result := new(api.Action)
	result.Server = *srv
	if strings.Index(*channel, "#") == 0 {
		result.Channel = *channel
	} else {
		result.User = *channel
	}
	result.Data = *msg
	result.Type = api.A_SAY
	return result
}
Example #6
0
// Example is a gorobot module which responds to the !hej command
func Example(chac chan api.Action, chev chan api.Event, config Config) {
	// action which will be sent to the robot
	a := api.Action{
		Type:     api.A_SAY,
		Data:     config.HelloWorld,
		Priority: api.PRIORITY_LOW,
	}

	for {
		e := <-chev
		// if the event is a message !hej, reply by sending an action
		if e.Type == api.E_PRIVMSG && len(e.Channel) > 0 && e.Data == "!hej" {
			a.Server = e.Server
			a.Channel = e.Channel
			go func(a api.Action) { chac <- a }(a)
		}
	}
}