-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
35 lines (29 loc) · 865 Bytes
/
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
package main
import (
"fmt"
"github.com/asaskevich/govalidator"
"github.com/emre-guler/url-shortener/db"
)
const shortUrlMain string = "https://www.emreguler.dev/"
func main() {
fmt.Println("Welcome to url-shortener!")
fmt.Println("---------------------")
fmt.Println("Enter the link you want to shorten: ")
var redirectUrl string
fmt.Scanln(&redirectUrl)
if govalidator.IsURL(redirectUrl) {
fmt.Println("Enter the path you want: ")
var shortPath string
fmt.Scanln(&shortPath)
var currentUrl string = shortUrlMain + shortPath
if govalidator.IsURL(currentUrl) {
if db.SaveShortPath(shortPath, redirectUrl) {
fmt.Println("Your new link is: ", (shortUrlMain + shortPath))
} else {
shortUrl, requestUrl := db.GetRedirectData(shortPath)
fmt.Println("Already using.")
fmt.Println(shortUrl, " => ", requestUrl)
}
}
}
}