-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
156 lines (143 loc) · 2.88 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
package main
import (
"bytes"
"context"
"fmt"
"io"
"net"
"net/http"
"os/signal"
"strconv"
"sync"
"syscall"
"time"
"github.com/atotto/clipboard"
"github.com/cezarmathe/clipsync/internal"
)
const (
PORT = 42424
)
var (
mu = new(sync.Mutex)
peers = make([]string, 0)
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
defer stop()
store, err := internal.NewBasicStore()
if err != nil {
panic(err)
}
observer := internal.NewPollingObserver()
sd, err := internal.NewServiceDiscovery(PORT, func(s []string) {
mu.Lock()
defer mu.Unlock()
fmt.Printf("updated peers: %v\n", s)
peers = s
})
if err != nil {
panic(err)
}
fmt.Println("hello, this is clipsync")
wg := new(sync.WaitGroup)
wg.Add(1)
go func() {
defer wg.Done()
if err := observer.Run(ctx); err != nil {
panic(err)
}
}()
wg.Add(1)
go func() {
defer wg.Done()
if err := sd.Run(ctx); err != nil {
panic(err)
}
}()
wg.Add(1)
go func() {
defer wg.Done()
ch := observer.GetChan()
for {
select {
case <-ctx.Done():
return
case v, ok := <-ch:
if !ok {
return
}
if x, _ := store.Get(); x != v {
store.Update(v)
fmt.Println("update clipboard: local")
v, ua := store.Get()
go func() {
mu.Lock()
defer mu.Unlock()
for _, peer := range peers {
p := peer
go func() {
b := bytes.NewBufferString(v)
http.Post(
fmt.Sprintf("http://%s/?ua=%d", p, ua.Unix()),
"text/plain",
b,
)
}()
}
}()
}
}
}
}()
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
if r.Method != "POST" {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
q := r.URL.Query()
ua, err := strconv.Atoi(q["ua"][0])
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
updatedAt := time.Unix(int64(ua), 0)
if _, oldUa := store.Get(); oldUa.After(updatedAt) {
w.WriteHeader(http.StatusConflict)
fmt.Println("received older clipboard, not updating")
return
}
b, err := io.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
if err := clipboard.WriteAll(string(b)); err != nil {
panic(err)
}
store.Update(string(b))
fmt.Println("update clipboard: remote")
w.WriteHeader(http.StatusOK)
})
httpServer := &http.Server{
Addr: net.JoinHostPort("0.0.0.0", strconv.Itoa(PORT)),
Handler: mux,
}
go func() {
if err := httpServer.ListenAndServe(); err != nil && err != http.ErrServerClosed {
stop()
panic(err)
}
}()
fmt.Println("running")
<-ctx.Done()
fmt.Println("stopping")
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
if err := httpServer.Shutdown(ctx); err != nil {
panic(err)
}
wg.Wait()
fmt.Println("bye bye")
}