aboutsummaryrefslogtreecommitdiffhomepage
path: root/mpaste.go
blob: eec6a20ceba4ac094aaab4c48d7d3da8047cf663 (plain) (blame)
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
package main

import (
	"bufio"
	"fmt"
	"io"
	"io/ioutil"
	"net/http"
	"os"
	"path"
	"strconv"
	"strings"
	"sync"

	"github.com/Mango0x45/getgopt"
	"github.com/alecthomas/chroma/formatters/html"
	"github.com/alecthomas/chroma/lexers"
	"github.com/alecthomas/chroma/styles"
	"github.com/dgrijalva/jwt-go"
)

const (
	URL_HOMEPAGE = iota
	URL_INVALID
	URL_SYNTAX
	URL_VALID
)

var (
	counter      int
	counter_file string
	domain       string
	file_prefix  string
	index_file   string
	mutex        sync.Mutex
	secret_key   = os.Getenv("MPASTE_SECRET")
	user_file    string
)

var (
	style     = styles.Get("pygments")
	formatter = html.New(html.Standalone(true), html.WithClasses(true),
		html.WithLineNumbers(true), html.LineNumbersInTable(true))
)

func usage() {
	fmt.Fprintf(os.Stderr,
		"Usage: %s [-c file] [-f directory] [-i file] [-u file] domain port\n",
		os.Args[0])
	os.Exit(1)
}

func error_and_die(e interface{}) {
	fmt.Fprintln(os.Stderr, e)
	os.Exit(1)
}

func remove_ext(s string) string {
	return strings.TrimSuffix(s, path.Ext(s))
}

func allowed_user(name string) bool {
	mutex.Lock()
	defer mutex.Unlock()

	if _, err := os.Stat(user_file); os.IsNotExist(err) {
		return false
	}

	file, err := os.Open(user_file)
	if err != nil {
		fmt.Fprintln(os.Stderr, err)
		return false
	}

	defer file.Close()

	scanner := bufio.NewScanner(file)
	scanner.Split(bufio.ScanLines)

	for scanner.Scan() {
		if scanner.Text() == name {
			return true
		}
	}

	return false
}

func validate_token(r *http.Request) bool {
	token, _ := jwt.Parse(r.Header.Get("Authorization"), func(t *jwt.Token) (interface{}, error) {
		if _, ok := t.Method.(*jwt.SigningMethodHMAC); !ok {
			return nil, fmt.Errorf("Something went wrong\n")
		}
		return []byte(secret_key), nil
	})

	if token == nil {
		return false
	}

	claims, ok := token.Claims.(jwt.MapClaims)

	if !(ok && token.Valid) {
		return false
	}

	if user_file == "" {
		return true
	}

	return allowed_user(claims["name"].(string))
}

func is_valid_url(s string) int {
	var i int
	var c rune
	for i, c = range s {
		if c == '.' && i > 0 {
			return URL_SYNTAX
		} else if c < '0' || c > '9' {
			return URL_INVALID
		}
	}

	if c != 0 {
		return URL_VALID
	}
	return URL_HOMEPAGE
}

func syntax_highlighting(w http.ResponseWriter, r *http.Request) {
	lexer := lexers.Match(r.URL.Path[1:])
	if lexer == nil {
		http.ServeFile(w, r, file_prefix+r.URL.Path[1:])
		return
	}

	data, err := ioutil.ReadFile(file_prefix + remove_ext(r.URL.Path[1:]))
	if err != nil {
		WRITE_HEADER(http.StatusNotFound, "404 page not found")
	}

	iterator, err := lexer.Tokenise(nil, string(data))
	if err != nil {
		WRITE_HEADER(http.StatusInternalServerError, "Failed to tokenize output")
	}

	if err := formatter.Format(w, style, iterator); err != nil {
		WRITE_HEADER(http.StatusInternalServerError, "Failed to format output")
	}
}

func endpoint(w http.ResponseWriter, r *http.Request) {
	switch r.Method {
	case http.MethodGet:
		switch is_valid_url(r.URL.Path[1:]) {
		case URL_HOMEPAGE:
			http.ServeFile(w, r, index_file)
		case URL_INVALID:
			WRITE_HEADER(http.StatusNotFound, "404 page not found")
		case URL_SYNTAX:
			w.Header().Set("Content-Type", "text/html")
			syntax_highlighting(w, r)
		case URL_VALID:
			w.Header().Set("Content-Type", "text/plain")
			http.ServeFile(w, r, file_prefix+r.URL.Path[1:])
		}
	case http.MethodPost:
		if secret_key != "" && !validate_token(r) {
			WRITE_HEADER(http.StatusForbidden, "Invalid API key")
		}

		file, _, err := r.FormFile("data")
		defer file.Close()
		if err != nil {
			WRITE_HEADER(http.StatusInternalServerError, "Failed to parse form")
		}

		mutex.Lock()

		fname := file_prefix + strconv.Itoa(counter)
		nfile, err := os.Create(fname)
		defer nfile.Close()
		if err != nil {
			WRITE_HEADER(http.StatusInternalServerError, "Failed to create file")
		}

		if _, err = io.Copy(nfile, file); err != nil {
			WRITE_HEADER(http.StatusInternalServerError, "Failed to write file")
		}

		if err = os.WriteFile(counter_file, []byte(strconv.Itoa(counter+1)), 0644); err != nil {
			WRITE_HEADER(http.StatusInternalServerError, "Failed to update counter")
		}

		w.WriteHeader(http.StatusOK)
		fmt.Fprintf(w, domain+"/%d\n", counter)

		counter++
		mutex.Unlock()
	default:
		WRITE_HEADER(http.StatusMethodNotAllowed, "Only GET and POST requests are supported")
	}
}

func main() {
	for opt := byte(0); getgopt.Getopt(len(os.Args), os.Args, ":c:f:i:u:", &opt); {
		switch opt {
		case 'c':
			counter_file = getgopt.Optarg
		case 'f':
			file_prefix = getgopt.Optarg
		case 'i':
			index_file = getgopt.Optarg
		case 'u':
			user_file = getgopt.Optarg
		default:
			usage()
		}
	}

	argv := os.Args[getgopt.Optind:]
	if len(argv) != 2 {
		usage()
	}
	domain = argv[0]
	port := argv[1]

	if file_prefix == "" {
		file_prefix = "files/"
	} else if file_prefix[len(file_prefix)-1] != '/' {
		file_prefix += "/"
	}

	if index_file == "" {
		index_file = "index.html"
	}

	if _, err := os.Stat(index_file); os.IsNotExist(err) {
		error_and_die(err)
	}

	if _, err := os.Stat(file_prefix); os.IsNotExist(err) {
		if err = os.MkdirAll(file_prefix, 0755); err != nil {
			error_and_die(err)
		}
	}

	if _, err := os.Stat(counter_file); os.IsNotExist(err) {
		counter = 0
	} else {
		data, err := ioutil.ReadFile(counter_file)
		if err != nil {
			error_and_die(err)
		}
		counter, _ = strconv.Atoi(string(data))
	}

	http.HandleFunc("/", endpoint)
	error_and_die(http.ListenAndServe(":"+port, nil))
}