summaryrefslogtreecommitdiff
path: root/go/acronym.go
blob: 955f256c03945ea5f62fcd071dd271a2d6b71949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main

import(
	"bufio"
	"fmt"
	"github.com/hpcloud/tail"
	"math/rand"
	"net"
	"os"
	"regexp"
	"strings"
	"time"
)

func check( e error ) {
	if e != nil {
		panic( e )
	}
}

func main() {
	rand.Seed( time.Now(). UnixNano() )
	dictfile, err := os.Open( "/usr/share/dict/american-english-large" )
	check( err )

	defer dictfile.Close()
	scanner := bufio.NewScanner( dictfile )
	scanner.Split(bufio.ScanLines)
	var clines []string
	var blines []string
	var klines []string
	for scanner.Scan() {
	        if strings.HasPrefix( scanner.Text(), "c" ) {
			clines = append(clines, scanner.Text())
		}
	        if strings.HasPrefix( scanner.Text(), "b" ) {
			blines = append(blines, scanner.Text())
		}
	        if strings.HasPrefix( scanner.Text(), "k" ) {
			klines = append(klines, scanner.Text())
		}
	}

	r := regexp.MustCompile( "^[0-9]{2}:[0-9]{2} <(.bungmonkey|.cornbugs|.wishapb|@[a-zA-Z0-9_]+)> +!cbk" )
	bungr := regexp.MustCompile( "^[0-9]{2}:[0-9]{2} <.bungmonkey> +!cbk" )
	logfile, err := tail.TailFile( os.ExpandEnv( "${HOME}/irclogs/twitch/#cornbugs.log" ), tail.Config{ Follow: true, Location: &tail.SeekInfo{ 0, os.SEEK_END } } )
	check( err )
	for logline := range logfile.Lines {

		if bungr.MatchString( logline.Text ) {
			time.Sleep( time.Second )
		}
		if r.MatchString( logline.Text ) {
			var cbk string
			cbk = fmt.Sprintf( "%s %s %s\n", clines[ rand.Intn( len( clines ) ) ], blines[ rand.Intn( len( blines ) ) ], klines[ rand.Intn( len( klines ) ) ] )
			fmt.Printf( "%v", cbk )
			ircsocket, err := net.Dial( "unix", os.ExpandEnv( "${HOME}/.irssi/twitch-cornbugs-socket" ) )
			check( err )
			byteswritten, err := ircsocket.Write( []byte( cbk ) )
			ircsocket.Close()
			check( err )
			fmt.Printf( "%v bytes written\n", byteswritten )
		}
	}

}