Support pre-filling long field
This commit is contained in:
8
main.go
8
main.go
@@ -76,6 +76,11 @@ func (sl *ShortLinks) serveRoot(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (sl *ShortLinks) serveRootWithPath(w http.ResponseWriter, r *http.Request, path string) {
|
func (sl *ShortLinks) serveRootWithPath(w http.ResponseWriter, r *http.Request, path string) {
|
||||||
|
err := r.ParseForm()
|
||||||
|
if err != nil {
|
||||||
|
sendError(w, http.StatusBadRequest, "Parse form: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
log.Printf("%s %s %s %s %s", r.RemoteAddr, r.Method, r.Host, sl.getDomain(r.Host), r.URL)
|
log.Printf("%s %s %s %s %s", r.RemoteAddr, r.Method, r.Host, sl.getDomain(r.Host), r.URL)
|
||||||
|
|
||||||
if !sl.isWritable(r.Host) {
|
if !sl.isWritable(r.Host) {
|
||||||
@@ -83,9 +88,10 @@ func (sl *ShortLinks) serveRootWithPath(w http.ResponseWriter, r *http.Request,
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
err := sl.tmpl.Execute(w, map[string]any{
|
err = sl.tmpl.Execute(w, map[string]any{
|
||||||
"path": path,
|
"path": path,
|
||||||
"host": sl.getDomain(r.Host),
|
"host": sl.getDomain(r.Host),
|
||||||
|
"long": r.Form.Get("long"),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
sendError(w, http.StatusInternalServerError, "error executing template: %s", err)
|
sendError(w, http.StatusInternalServerError, "error executing template: %s", err)
|
||||||
|
|||||||
@@ -297,7 +297,7 @@ document.addEventListener('DOMContentLoaded', async () => {
|
|||||||
<sl-icon id="short-icon" name="type" slot="suffix"></sl-icon>
|
<sl-icon id="short-icon" name="type" slot="suffix"></sl-icon>
|
||||||
</sl-input>
|
</sl-input>
|
||||||
|
|
||||||
<sl-input id="long" label="⟶" type="url">
|
<sl-input id="long" value="{{ .long }}" label="⟶" type="url">
|
||||||
<sl-icon id="long-icon" name="type" slot="suffix"></sl-icon>
|
<sl-icon id="long-icon" name="type" slot="suffix"></sl-icon>
|
||||||
</sl-input>
|
</sl-input>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user