2015-06-25 22:36:58 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetURLID(url string) (int64, error) {
|
|
|
|
pieces := strings.Split(strings.Trim(url, "/"), "/")
|
|
|
|
return strconv.ParseInt(pieces[len(pieces)-1], 10, 0)
|
|
|
|
}
|
|
|
|
|
2015-07-11 08:58:36 -04:00
|
|
|
func GetURLPieces(url string, format string, a ...interface{}) (int, error) {
|
|
|
|
url = strings.Replace(url, "/", " ", -1)
|
|
|
|
format = strings.Replace(format, "/", " ", -1)
|
|
|
|
return fmt.Sscanf(url, format, a...)
|
|
|
|
}
|
|
|
|
|
2015-06-25 22:36:58 -04:00
|
|
|
func WriteSuccess(w http.ResponseWriter) {
|
|
|
|
fmt.Fprint(w, "{}")
|
|
|
|
}
|