site.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
package main import ( "fmt" "log" "net/http" "git.j3s.sh/feeds.gay/auth" "git.j3s.sh/feeds.gay/sqlite" "golang.org/x/crypto/bcrypt" ) type Site struct { // title of the website title string // site database handle db *sqlite.DB } // New returns a fully populated & ready for action Site func New() *Site { title := "feeds.gay" s := Site{ title: "feeds.gay", db: sqlite.New(title + ".db"), } return &s } func (s *Site) Start(addr string, mux *http.ServeMux) { log.Fatal(http.ListenAndServe(addr, mux)) } func (s *Site) indexHandler(w http.ResponseWriter, r *http.Request) { if !methodAllowed(w, r, "GET") { return } // The "/" pattern matches everything, so we need to check // that we're at the root here. if r.URL.Path != "/" { http.NotFound(w, r) return } if s.loggedIn(r) { fmt.Fprintf(w, `<h1>index</h1> <small>logged in as %s (<a href="/logout">logout</a>) </small>`, s.username(r)) } else { fmt.Fprintf(w, `<h1>index</h1> <a href="/login">login</a>`) } } func (s *Site) loginHandler(w http.ResponseWriter, r *http.Request) { if !methodAllowed(w, r, "GET", "POST") { return } if r.Method == "GET" { if s.loggedIn(r) { fmt.Fprintf(w, "you are already logged in :3\n") } else { fmt.Fprintf(w, `<h1>login</h1> <form method="POST" action="/login"> <label for="username">username:</label> <input type="text" name="username" required><br> <label for="password">password:</label> <input type="password" name="password" required><br> <input type="submit" value="login"> </form> <p>if you want to create an account, click <a href="/register">here</a>`) } } if r.Method == "POST" { username := r.FormValue("username") password := r.FormValue("password") err := s.login(w, username, password) if err != nil { fmt.Fprintf(w, "<h1>incorrect username/password</h1>") return } http.Redirect(w, r, "/", http.StatusSeeOther) } } // TODO: make this take a POST only in accordance w/ some spec func (s *Site) logoutHandler(w http.ResponseWriter, r *http.Request) { if !methodAllowed(w, r, "GET", "POST") { return } http.SetCookie(w, &http.Cookie{ Name: "session_token", Value: "", }) http.Redirect(w, r, "/", http.StatusSeeOther) } func (s *Site) registerHandler(w http.ResponseWriter, r *http.Request) { if !methodAllowed(w, r, "GET", "POST") { return } if r.Method == "GET" { fmt.Fprintf(w, `<h1>register</h1> <form method="POST" action="/register"> <label for="username">username:</label> <input type="text" name="username" required><br> <label for="password">password:</label> <input type="password" name="password" required><br> <input type="submit" value="login"> </form>`) } if r.Method == "POST" { username := r.FormValue("username") password := r.FormValue("password") err := s.register(username, password) if err != nil { internalServerError(w, "failed to register user") return } err = s.login(w, username, password) if err != nil { internalServerError(w, "extremely weird login error") return } http.Redirect(w, r, "/", http.StatusSeeOther) } } // username fetches a client's username based // on the sessionToken that user has set. username // will return "" if there is no sessionToken. func (s *Site) username(r *http.Request) string { sessionToken, err := r.Cookie("session_token") if err != nil { return "" } username := s.db.GetUsernameBySessionToken(sessionToken.Value) return username } func (s *Site) loggedIn(r *http.Request) bool { if s.username(r) == "" { return false } return true } // login compares the sqlite password field against the user supplied password and // sets a session token against the supplied writer. func (s *Site) login(w http.ResponseWriter, username string, password string) error { storedPassword := s.db.GetPassword(username) if storedPassword == "" { return fmt.Errorf("blank stored password") } if username == "" { return fmt.Errorf("username cannot be nil") } if password == "" { return fmt.Errorf("password cannot be nil") } err := bcrypt.CompareHashAndPassword([]byte(storedPassword), []byte(password)) if err != nil { return fmt.Errorf("invalid password") } sessionToken := auth.GenerateSessionToken() s.db.SetSessionToken(username, sessionToken) http.SetCookie(w, &http.Cookie{ Name: "session_token", Value: sessionToken, }) return nil } func (s *Site) register(username string, password string) error { hashedPassword, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost) if err != nil { return err } s.db.AddUser(username, string(hashedPassword)) return nil }