2014-10-16 21:53:10 +02:00
|
|
|
/*
|
2021-07-10 20:20:19 +02:00
|
|
|
The MIT License (MIT)
|
2014-10-16 21:53:10 +02:00
|
|
|
|
2021-07-10 20:20:19 +02:00
|
|
|
Copyright (c) 2020- Andrea Spacca and Stefan Benten.
|
2014-10-16 21:53:10 +02:00
|
|
|
|
2021-07-10 20:20:19 +02:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2014-10-16 21:53:10 +02:00
|
|
|
|
2021-07-10 20:20:19 +02:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2014-10-16 21:53:10 +02:00
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
2021-07-10 20:20:19 +02:00
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
2014-10-16 21:53:10 +02:00
|
|
|
*/
|
|
|
|
|
2017-03-22 18:09:21 +01:00
|
|
|
package server
|
2014-10-16 20:01:43 +02:00
|
|
|
|
|
|
|
import (
|
2021-05-20 08:26:07 +02:00
|
|
|
"math/rand"
|
2014-10-16 20:01:43 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-08-19 22:45:30 +02:00
|
|
|
// SYMBOLS characters used for short-urls
|
2015-02-25 01:46:14 +01:00
|
|
|
SYMBOLS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
2014-10-16 20:01:43 +02:00
|
|
|
)
|
|
|
|
|
2021-07-08 07:48:32 +02:00
|
|
|
// generate a token
|
2021-08-19 22:45:30 +02:00
|
|
|
func token(length int) string {
|
2021-07-08 07:48:32 +02:00
|
|
|
result := ""
|
|
|
|
for i := 0; i < length; i++ {
|
2021-07-16 07:59:02 +02:00
|
|
|
x := rand.Intn(len(SYMBOLS) - 1)
|
2021-07-08 07:48:32 +02:00
|
|
|
result = string(SYMBOLS[x]) + result
|
2014-10-16 20:01:43 +02:00
|
|
|
}
|
2021-05-20 08:26:07 +02:00
|
|
|
|
2014-10-16 20:01:43 +02:00
|
|
|
return result
|
|
|
|
}
|