-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
53 lines (45 loc) · 1.02 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
package main
import (
"fmt"
"log"
"net/http"
"os"
"github.com/gorilla/mux"
)
type WikiArticle struct {
Title string `json:"Title"`
Body string `json:"Body"`
}
func getPort() string {
// local env variable
port, portInEnv := os.LookupEnv("PORT")
// default value
if !portInEnv {
// CLI argument
usingCustomPort := len(os.Args[1:]) > 0
if usingCustomPort {
port = ":" + os.Args[1]
} else {
// default port
port = ":10000"
}
} else {
port = ":" + port
}
fmt.Println("using port", port)
return port
}
func handleRequests() {
myRouter := mux.NewRouter().StrictSlash(true)
// search for articles by title. Can use titles with next API call in order to scrape them
myRouter.HandleFunc("/search/{search}", SearchForArticle)
// scrape an article, returns title and body
myRouter.HandleFunc("/article/{article}", GetArticle)
// returns a random article
myRouter.HandleFunc("/random", GetRandomArticle)
port := getPort()
log.Fatal(http.ListenAndServe(port, myRouter))
}
func main() {
handleRequests()
}