This repository was archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathserver.go
More file actions
836 lines (724 loc) · 16.6 KB
/
server.go
File metadata and controls
836 lines (724 loc) · 16.6 KB
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
//
// This is a simple WebMail project.
//
package main
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"log"
"net/http"
"html"
"os"
"strconv"
"text/template"
"time"
"github.com/gorilla/handlers"
"github.com/gorilla/mux"
"github.com/gorilla/securecookie"
)
var (
//
// The secure-cookie object we use.
//
cookieHandler *securecookie.SecureCookie
)
// key is the type for a context-key
//
// We use context to store the remote host (URI), username, & password
// in our session-cookie.
type key int
const (
// keyHost stores the host URI
keyHost key = iota
// keyUser stores the username.
keyUser key = iota
// keyPass stores the password
keyPass key = iota
)
var (
tmpls *template.Template
)
//
// Data used by the frame templates, common to every page
//
type FrameData struct {
Title string
IsLoggedIn bool
}
func loadTemplates() {
tmpls = template.New("tmpls")
toParse := []string {
"data/frame-pre-content.html",
"data/frame-post-content.html",
"data/login.html",
"data/folders.html",
"data/folder-list.html",
"data/message.html",
"data/messages.html",
}
for _, file := range toParse {
log.Printf("Parsing template %v", file)
f, err := getResource(file)
if err != nil {
// Failing to load a template is a coding error
// and can't be handled.
log.Fatal(err)
}
// Successive calls to Parse allow adding more templates to the
// same object, if they are wrapped in a {{ define }} block.
tmpls, err = tmpls.Parse(string(f))
if err != nil {
// Failing to parse a template is a coding error
// and can't be handled.
log.Fatal(err)
}
}
}
// LoadCookie loads the persistent cookies from disc, if they exist.
func LoadCookie() {
//
// Read the hash
//
hash, err := ioutil.ReadFile(".cookie.hsh")
if err == nil {
//
// If there was no error read the block
//
block, err := ioutil.ReadFile(".cookie.blk")
if err == nil {
//
// And create the cookie-helper.
//
cookieHandler = securecookie.New(hash, block)
return
}
}
//
// So we either failed to find, or failed to read, the existing
// values. (Perhaps this is the first run.)
//
// Generate random values.
//
h := securecookie.GenerateRandomKey(64)
b := securecookie.GenerateRandomKey(32)
//
// Now write them out.
//
// If writing fails then we'll use the values, and this means
// when the server restarts authentication will need to to be
// repeated by the users.
//
// (i.e. They'll be logged out.)
//
err = ioutil.WriteFile(".cookie.hsh", h, 0644)
if err != nil {
fmt.Printf("WARNING: failed to write .cookie.hsh for persistent secure cookie")
cookieHandler = securecookie.New(h, b)
return
}
err = ioutil.WriteFile(".cookie.blk", b, 0644)
if err != nil {
fmt.Printf("WARNING: failed to write .cookie.blk for persistent secure cookie")
cookieHandler = securecookie.New(h, b)
return
}
//
// Create the cookie, if we got here we've saved the data
// for the next restart.
//
cookieHandler = securecookie.New(h, b)
}
// AddContext updates our HTTP-handlers to be username-aware.
func AddContext(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
//
// If we have a session-cookie
//
if cookie, err := r.Cookie("cookie"); err == nil {
// Make a map
cookieValue := make(map[string]string)
// Decode it.
if err = cookieHandler.Decode("cookie", cookie.Value, &cookieValue); err == nil {
//
// Add the context to the handler, with the
// username.
//
user := cookieValue["user"]
pass := cookieValue["pass"]
host := cookieValue["host"]
ctx := context.WithValue(r.Context(), keyUser, user)
ctx = context.WithValue(ctx, keyPass, pass)
ctx = context.WithValue(ctx, keyHost, host)
//
// And fire it up.
//
next.ServeHTTP(w, r.WithContext(ctx))
return
}
}
//
// We either failed to decode the cookie, or the cookie
// was missing.
//
// So we fall-back to assuming we're there is no user logged
// in, and supply no context.
//
next.ServeHTTP(w, r)
return
})
}
//
// Data required for rendering the login page
//
type LoginData struct {
*FrameData
Error string
}
//
// loginForm shows the login-form to the user, via the template `login.html`.
//
func loginForm(response http.ResponseWriter, request *http.Request) {
//
// Lookup the HTML template
//
t := tmpls.Lookup("login.html")
//
// Execute the template into our buffer.
//
buf := &bytes.Buffer{}
err := t.Execute(buf, &LoginData{&FrameData{"Login", false},""})
//
// If there were errors, then show them.
//
if err != nil {
fmt.Fprintf(response, err.Error())
return
}
//
// Otherwise write the result.
//
buf.WriteTo(response)
}
//
// validate tests a login is correct.
//
func validate(host string, username string, password string) (bool, error) {
x := NewIMAP(host, username, password)
res, err := x.Connect()
if !res {
return false, err
}
if err != nil {
return false, err
}
x.Close()
return true, nil
}
//
// Process a login-event.
//
func loginHandler(response http.ResponseWriter, request *http.Request) {
//
// Get the hostname/username/password from the incoming submission
//
host := request.FormValue("host")
user := request.FormValue("name")
pass := request.FormValue("pass")
//
// If this succeeded then let the login succeed.
//
result, error := validate(host, user, pass)
if result && error == nil {
//
// Store everything in the cookie
//
value := map[string]string{
"host": host,
"user": user,
"pass": pass,
}
if encoded, err := cookieHandler.Encode("cookie", value); err == nil {
cookie := &http.Cookie{
Name: "cookie",
Value: encoded,
Path: "/",
}
http.SetCookie(response, cookie)
}
http.Redirect(response, request, "/folders/", 302)
return
}
//
// Create an instance of the object so we can populate
// our template.
//
x := &LoginData{
&FrameData{"Login", false},
error.Error(),
}
//
// If we reached this point there was an error with the
// login-process.
//
// Load the `login.html` template, and populate it with the
// error-message
//
t := tmpls.Lookup("login.html")
//
// Execute the template into our buffer.
//
buf := &bytes.Buffer{}
err := t.Execute(buf, x)
//
// If there were errors, then show them.
//
if err != nil {
fmt.Fprintf(response, err.Error())
return
}
//
// Otherwise write the result.
//
buf.WriteTo(response)
}
// indexPageHandler responds to the server-root requests. If the user
// is logged in it will redirect them to the folder-overview, otherwise
// the login-form.
func indexPageHandler(response http.ResponseWriter, request *http.Request) {
user := request.Context().Value(keyUser)
if user == nil {
http.Redirect(response, request, "/login", 302)
}
http.Redirect(response, request, "/folders", 302)
}
//
// Show the folder-list
//
func folderListHandler(response http.ResponseWriter, request *http.Request) {
user := request.Context().Value(keyUser)
pass := request.Context().Value(keyPass)
host := request.Context().Value(keyHost)
if user == nil || host == nil || pass == nil {
http.Redirect(response, request, "/login", 302)
}
//
// This is the page-data we'll return
//
type PageData struct {
*FrameData
Error string
Folders []IMAPFolder
}
//
// Create an instance of the object so we can populate
// our template.
//
x := &PageData{
&FrameData{"Folders", true},
"",
make([]IMAPFolder,0),
}
//
// Create an IMAP object.
//
imap := NewIMAP(host.(string), user.(string), pass.(string))
//
// If we logged in then we can get the folders/messages
//
res, err := imap.Connect()
if (res == true) && (err == nil) {
x.Folders, err = imap.Folders()
imap.Close()
if err != nil {
x.Error = err.Error()
}
} else {
//
// Otherwise we will show an error
//
x.Error = err.Error()
imap.Close()
}
//
// Lookup the template
//
t := tmpls.Lookup("folders.html")
//
// Execute the template into our buffer.
//
buf := &bytes.Buffer{}
err = t.Execute(buf, x)
//
// If there were errors, then show them.
//
if err != nil {
fmt.Fprintf(response, err.Error())
return
}
//
// Otherwise write the result.
//
buf.WriteTo(response)
}
//
// Show the messages in the given folder.
//
func messageListHandler(response http.ResponseWriter, request *http.Request) {
user := request.Context().Value(keyUser)
pass := request.Context().Value(keyPass)
host := request.Context().Value(keyHost)
if user == nil || host == nil || pass == nil {
http.Redirect(response, request, "/login", 302)
}
//
// Get the name of the folder we're going to display
//
vars := mux.Vars(request)
folder := vars["name"]
start := vars["offset"]
//
// Start offset of paging, if any.
//
offset := -1
if start != "" {
offset, _ = strconv.Atoi(start)
}
//
// This is the page-data we'll return
//
type PageData struct {
*FrameData
Error string
Messages []Message
Folder string
Folders []IMAPFolder
// Previous & Next offsets for paging. If available.
Min int
Max int
Prev string
Next string
// Total/Unread counts
Unread int
Total int
}
//
// Create an instance of the object so we can populate
// our template.
//
var x PageData
var err error
x.FrameData = &FrameData{html.EscapeString(folder), true}
//
// Fill it up
//
x.Folder = folder
//
// Create an IMAP object.
//
imap := NewIMAP(host.(string), user.(string), pass.(string))
//
// If we logged in then we can get the folders/messages
//
res, err := imap.Connect()
if (res == true) && (err == nil) {
x.Folders, err = imap.Folders()
if err != nil {
x.Error = err.Error()
}
x.Messages, x.Min, x.Max, err = imap.Messages(folder, offset)
if err != nil {
x.Error = err.Error()
}
x.Total = x.Max
x.Unread = imap.Unread(folder)
imap.Close()
} else {
//
// Otherwise we will show an error
//
x.Error = err.Error()
imap.Close()
}
//
// Setup paging.
//
if offset < 0 {
//
// No offset right now.
//
x.Prev = fmt.Sprintf("%d", x.Max-50)
x.Next = ""
} else {
//
// We're already scrolling.
//
if offset > 50 {
x.Prev = fmt.Sprintf("%d", offset-50)
} else {
x.Prev = "50"
}
if offset+50 < x.Max {
x.Next = fmt.Sprintf("%d", offset+50)
} else {
x.Next = fmt.Sprintf("%d", x.Max)
}
}
//
// Lookup the messages view
//
t := tmpls.Lookup("messages.html")
//
// Execute the template into our buffer.
//
buf := &bytes.Buffer{}
err = t.Execute(buf, x)
//
// If there were errors, then show them.
if err != nil {
fmt.Fprintf(response, err.Error())
return
}
//
// Otherwise write the result.
//
buf.WriteTo(response)
}
// Show a single message.
func messageHandler(response http.ResponseWriter, request *http.Request) {
user := request.Context().Value(keyUser)
pass := request.Context().Value(keyPass)
host := request.Context().Value(keyHost)
if user == nil || host == nil || pass == nil {
http.Redirect(response, request, "/login", 302)
}
//
// Get the name of the folder, and the number of the message
// we're supposed to display
//
vars := mux.Vars(request)
uid := vars["number"]
folder := vars["folder"]
//
// This is the page-data we'll return
//
type PageData struct {
*FrameData
Error string
Message SingleMessage
Folder string
Folders []IMAPFolder
// Unread/Total counts
Unread int
Total int
}
//
// Create an instance of the object so we can populate
// our template.
//
var x PageData
var err error
//
// Create an IMAP object.
//
imap := NewIMAP(host.(string), user.(string), pass.(string))
//
// If we logged in then we can get the folders/messages
//
res, err := imap.Connect()
if (res == true) && (err == nil) {
x.Folders, err = imap.Folders()
if err != nil {
x.Error = err.Error()
}
x.Message, err = imap.GetMessage(uid, folder)
if err != nil {
x.Error = err.Error()
}
x.Total = x.Message.Total
x.Unread = x.Message.Unread
imap.Close()
} else {
//
// Otherwise we will show an error
//
x.Error = err.Error()
imap.Close()
}
x.Folder = folder
// Render the title into a string and generate the frame data
x.FrameData = &FrameData{html.EscapeString("Message " + folder + " [" + uid + "]"), true}
//
// Lookup the the message view template
//
t := tmpls.Lookup("message.html")
//
// Execute the template into our buffer.
//
buf := &bytes.Buffer{}
err = t.Execute(buf, x)
//
// If there were errors, then show them.
if err != nil {
fmt.Fprintf(response, err.Error())
return
}
//
// Otherwise write the result.
//
buf.WriteTo(response)
}
// Download an attachment
func attachmentHandler(response http.ResponseWriter, request *http.Request) {
user := request.Context().Value(keyUser)
pass := request.Context().Value(keyPass)
host := request.Context().Value(keyHost)
if user == nil || host == nil || pass == nil {
http.Redirect(response, request, "/login", 302)
}
//
// Get the name of the folder, and the number of the message
// we're supposed to display
//
vars := mux.Vars(request)
uid := vars["number"]
folder := vars["folder"]
filename := vars["filename"]
//
// Create an IMAP object.
//
imap := NewIMAP(host.(string), user.(string), pass.(string))
//
// The message we'll parse.
//
var msg SingleMessage
//
// If we logged in then we can get the folders/messages
//
res, err := imap.Connect()
if (res == true) && (err == nil) {
msg, err = imap.GetMessage(uid, folder)
imap.Close()
if err != nil {
fmt.Fprintf(response, "Error getting message - %s\n", err.Error())
return
}
} else {
//
// Otherwise we will show an error
//
fmt.Fprintf(response, "Error getting message - %s\n", err.Error())
imap.Close()
return
}
//
// Now loop over the attachments
//
for _, e := range msg.Attachments {
if e.FileName == filename {
//
// Set the content-type
//
response.Header().Set("Content-Type", e.ContentType)
response.Write(e.Content)
return
}
}
//
// Failed to find attachment
//
fmt.Fprintf(response, "Failed to find attachment")
}
//
// logout handler
//
func logoutHandler(response http.ResponseWriter, request *http.Request) {
cookie := &http.Cookie{
Name: "cookie",
Value: "",
Path: "/",
MaxAge: -1,
}
http.SetCookie(response, cookie)
http.Redirect(response, request, "/", 302)
}
// main is our entry-point
func main() {
//
// Load our HTML templates
//
loadTemplates()
//
// Configure our secure cookies
//
LoadCookie()
//
// Configure our routes.
//
var router = mux.NewRouter()
router.HandleFunc("/", indexPageHandler)
router.HandleFunc("/login", loginForm).Methods("GET")
router.HandleFunc("/login/", loginForm).Methods("GET")
router.HandleFunc("/login", loginHandler).Methods("POST")
router.HandleFunc("/login/", loginHandler).Methods("POST")
router.HandleFunc("/logout", logoutHandler).Methods("GET")
router.HandleFunc("/logout/", logoutHandler).Methods("GET")
router.HandleFunc("/logout", logoutHandler).Methods("POST")
router.HandleFunc("/logout/", logoutHandler).Methods("POST")
//
// Folder List
//
router.HandleFunc("/folders", folderListHandler).Methods("GET")
router.HandleFunc("/folders/", folderListHandler).Methods("GET")
//
// List of messages in the given folder.
//
router.HandleFunc("/folder/{name}/{offset}", messageListHandler).Methods("GET")
router.HandleFunc("/folder/{name}/{offset}/", messageListHandler).Methods("GET")
router.HandleFunc("/folder/{name}", messageListHandler).Methods("GET")
router.HandleFunc("/folder/{name}/", messageListHandler).Methods("GET")
//
// Single message
//
router.HandleFunc("/message/{number}/{folder}", messageHandler).Methods("GET")
router.HandleFunc("/message/{number}/{folder}/", messageHandler).Methods("GET")
//
// Attachment download
//
router.HandleFunc("/attach/{folder}/{number}/{filename}", attachmentHandler).Methods("GET")
router.HandleFunc("/attach/{folder}/{number}/{filename}/", attachmentHandler).Methods("GET")
http.Handle("/", router)
//
// Show what we're going to bind upon.
//
bindHost := "127.0.0.1"
bindPort := 8080
bind := fmt.Sprintf("%s:%d", bindHost, bindPort)
fmt.Printf("Listening on http://%s/\n", bind)
//
// Wire up logging.
//
loggedRouter := handlers.LoggingHandler(os.Stdout, router)
//
// Wire up context (i.e. cookie-based session stuff.)
//
contextRouter := AddContext(loggedRouter)
//
// We want to make sure we handle timeouts effectively
//
srv := &http.Server{
Addr: bind,
Handler: contextRouter,
ReadTimeout: 25 * time.Second,
IdleTimeout: 25 * time.Second,
WriteTimeout: 25 * time.Second,
}
//
// Launch the server.
//
err := srv.ListenAndServe()
if err != nil {
fmt.Printf("\nError starting HTTP server: %s\n", err.Error())
}
}