2021-03-28 05:54:53 +00:00
|
|
|
/*
|
|
|
|
Copyright 2021 Arsen Musayelyan
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-03-26 05:25:10 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/base64"
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2021-03-27 21:50:52 +00:00
|
|
|
"regexp"
|
2021-03-26 05:25:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Function to dynamically execute template and return results
|
|
|
|
func dynamicTemplate(name string, data interface{}) (template.HTML, error) {
|
|
|
|
// Create new buffer
|
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
// Execute template writing to buffer with provided data
|
|
|
|
err := templates[name].Execute(buf, data)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
// Return results of template execution
|
|
|
|
return template.HTML(buf.String()), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap URL with proxy
|
|
|
|
func wrapProxy(url string) string {
|
|
|
|
// Encode URL with base64
|
|
|
|
b64url := base64.StdEncoding.EncodeToString([]byte(url))
|
|
|
|
// Return /proxy/{url}
|
|
|
|
return fmt.Sprint("/proxy/", b64url)
|
|
|
|
}
|
|
|
|
|
2021-03-27 00:42:02 +00:00
|
|
|
// Wrap string in template.JS to unescape JS code
|
|
|
|
func unescapeJS(s string) template.JS {
|
|
|
|
return template.JS(s)
|
|
|
|
}
|
|
|
|
|
2021-03-27 21:50:52 +00:00
|
|
|
// Remove all non-alphanumeric characters
|
|
|
|
func toAlphaNum(s string) string {
|
|
|
|
// Create regex matching everything but alphanumeric
|
|
|
|
regex := regexp.MustCompile(`[^a-zA-Z0-9]+`)
|
|
|
|
// Remove all matched characters in string, then return
|
|
|
|
return regex.ReplaceAllString(s, "")
|
|
|
|
}
|
|
|
|
|
2021-03-26 05:25:10 +00:00
|
|
|
// Function to get template function map
|
|
|
|
func getFuncMap() template.FuncMap {
|
|
|
|
// Return function map with template functions
|
|
|
|
return template.FuncMap{
|
|
|
|
"dyn_template": dynamicTemplate,
|
|
|
|
"proxy": wrapProxy,
|
2021-03-27 00:42:02 +00:00
|
|
|
"unescJS": unescapeJS,
|
2021-03-27 21:50:52 +00:00
|
|
|
"toAlphaNum": toAlphaNum,
|
|
|
|
}
|
2021-03-26 05:25:10 +00:00
|
|
|
}
|