2018-04-30 22:37:36 +05:00
|
|
|
// Fast Paste Bin - uberfast and easy-to-use pastebin.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2018, Stanislav N. aka pztrn and Fast Paste Bin
|
|
|
|
// developers.
|
|
|
|
//
|
|
|
|
// 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:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be
|
|
|
|
// included in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR 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.
|
|
|
|
|
2018-04-30 22:31:48 +05:00
|
|
|
package pastes
|
2018-04-30 18:42:17 +05:00
|
|
|
|
|
|
|
import (
|
|
|
|
// stdlib
|
|
|
|
"time"
|
2018-05-01 02:37:51 +05:00
|
|
|
// other
|
|
|
|
//"github.com/alecthomas/chroma"
|
2018-04-30 18:42:17 +05:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
PASTE_KEEP_FOR_MINUTES = 1
|
|
|
|
PASTE_KEEP_FOR_HOURS = 2
|
|
|
|
PASTE_KEEP_FOR_DAYS = 3
|
|
|
|
PASTE_KEEP_FOR_MONTHS = 4
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
PASTE_KEEPS_CORELLATION = map[string]int{
|
|
|
|
"M": PASTE_KEEP_FOR_MINUTES,
|
|
|
|
"h": PASTE_KEEP_FOR_HOURS,
|
|
|
|
"d": PASTE_KEEP_FOR_DAYS,
|
|
|
|
"m": PASTE_KEEP_FOR_MONTHS,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-04-30 22:31:48 +05:00
|
|
|
// Paste represents paste itself.
|
2018-04-30 18:42:17 +05:00
|
|
|
type Paste struct {
|
|
|
|
ID int `db:"id"`
|
|
|
|
Title string `db:"title"`
|
|
|
|
Data string `db:"data"`
|
|
|
|
CreatedAt *time.Time `db:"created_at"`
|
|
|
|
KeepFor int `db:"keep_for"`
|
|
|
|
KeepForUnitType int `db:"keep_for_unit_type"`
|
2018-05-01 02:37:51 +05:00
|
|
|
Language string `db:"language"`
|
2018-05-01 22:56:45 +05:00
|
|
|
Private bool `db:"private"`
|
2018-04-30 18:42:17 +05:00
|
|
|
}
|