-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
200 lines (180 loc) · 5.73 KB
/
main.go
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
//
// telme10
//
// Copyright (c) 2016-2023 Christian Pointner <[email protected]>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of telgo nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
package main
import (
"fmt"
"os"
"time"
"github.com/coreos/go-systemd/activation"
"github.com/spreadspace/telgo"
)
func wait(length time.Duration, cancel <-chan bool) bool {
t := time.NewTimer(length)
defer t.Stop()
select {
case <-t.C:
return false
case <-cancel:
return true
}
}
func printLogo(c *telgo.Client) {
for _, line := range logoBW72 {
c.Sayln(" " + line)
}
}
type Greeter struct {
}
func (g Greeter) Exec(c *telgo.Client, args []string) bool {
fmt.Printf("client(%s): connected\n", c.Conn.RemoteAddr())
c.Sayln("")
c.Sayln("")
printLogo(c)
c.Sayln("")
c.Sayln(" Hello!")
c.Sayln("")
if wait(1*time.Second, c.Cancel) {
return true
}
c.Sayln(" Did you know: realraum will be celebrating its 16th birthday")
c.Sayln(" on the 1st of April 2023?")
c.Sayln("")
if wait(1*time.Second, c.Cancel) {
return true
}
c.Sayln(" you should come by!")
c.Sayln("")
if wait(3*time.Second, c.Cancel) {
return true
}
c.Sayln(" fun fun fun!")
c.Sayln("")
if wait(3*time.Second, c.Cancel) {
return true
}
c.Sayln(" come to the party ... we mean it!")
c.Sayln("")
c.Sayln(" you now have 10s to decide:")
c.Say(" deciding ... 0.0%%\r")
DECISION:
for i := uint(0); i < 100; i++ {
select {
case <-c.Cancel:
break DECISION
default:
}
time.Sleep(100 * time.Millisecond)
c.Say(" deciding ... %5.1f%%\r", (float64(i)/float64(100))*100.0)
}
c.Sayln(" deciding ... 100.0%% ... done.")
c.Sayln("")
c.Prompt = " are you coming? "
return false
}
func answer(c *telgo.Client, args []string) bool {
if len(args) > 1 {
c.Sayln(" yes or no?")
fmt.Printf("client(%s) said: %q\n", c.Conn.RemoteAddr(), args)
return false
}
switch args[0] {
case "y":
fallthrough
case "yes":
c.Sayln("")
c.Sayln(" Great! We'll see you at the party then.")
c.Sayln("")
c.Sayln(" expect DJ Music, Food, Tschunk, Games and more")
c.Sayln("")
c.Sayln(" 2023-04-01 from 18:00 till it's over")
c.Sayln("")
c.Sayln(" Find the place:")
c.Sayln(" realraum, Brockmanngasse 15, 8010 Graz")
c.Sayln(" https://www.openstreetmap.org/node/668061696")
c.Sayln("")
c.Sayln(" Save the date:")
c.Sayln(" https://0x10.r3.at/0x10r3.ics")
c.Sayln("")
c.Sayln(" Get more Info:")
c.Sayln(" https://wiki.realraum.at/unterkunft")
c.Sayln(" idle at irc://irc.oftc.net/#realraum")
c.Sayln(" or join matrix.to/#/#_oftc_#realraum:matrix.org")
fmt.Printf("client(%s) wants to come to the party!\n", c.Conn.RemoteAddr())
case "n":
fallthrough
case "no":
c.Sayln("")
c.Sayln(" Sorry to hear! You're missing out on a great experience.")
c.Sayln(" We trust in your ability to listen to great music and have lots")
c.Sayln(" of fun with great food and Tschunk at home though.")
fmt.Printf("client(%s) won't show up :(\n", c.Conn.RemoteAddr())
default:
c.Sayln(" yes or no?")
fmt.Printf("client(%s) said: %q\n", c.Conn.RemoteAddr(), args)
return false
}
c.Sayln("")
c.Sayln(" https://github.com/realraum/telme10")
c.Sayln("")
time.Sleep(1 * time.Second)
return true
}
func main() {
cmdlist := make(telgo.CmdList)
listeners, err := activation.Listeners()
if err != nil {
fmt.Printf("error while getting socket from systemd: %s", err)
os.Exit(1)
}
var s *telgo.Server
if len(listeners) == 0 {
if len(os.Args) < 2 {
fmt.Println("please specify a address to listen on")
os.Exit(2)
}
if s, err = telgo.NewServer(os.Args[1], "", cmdlist, nil); err != nil {
fmt.Println("failed to initialize the server:", err)
os.Exit(1)
}
fmt.Println("running telnet server on", os.Args[1])
} else {
fmt.Printf("got %d sockets from systemd\n", len(listeners))
if len(listeners) > 1 {
fmt.Println("warning got more than one socket from systemd, only using the first", err)
}
if s, err = telgo.NewServerFromListener(listeners[0], "", cmdlist, nil); err != nil {
fmt.Println("failed to initialize the server:", err)
os.Exit(1)
}
fmt.Println("running telnet server on", listeners[0].Addr())
}
if err = s.Run(Greeter{}, answer); err != nil {
fmt.Println("telnet server returned:", err)
}
}