2019-03-07 08:43:28 +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.
|
|
|
|
|
|
|
|
package pastes
|
|
|
|
|
|
|
|
import (
|
2019-04-12 23:29:42 +05:00
|
|
|
"regexp"
|
|
|
|
|
2019-10-12 14:18:35 +05:00
|
|
|
"go.dev.pztrn.name/fastpastebin/internal/context"
|
2019-03-07 08:43:28 +05:00
|
|
|
)
|
|
|
|
|
2021-06-14 23:48:34 +05:00
|
|
|
var regexInts = regexp.MustCompile("[0-9]+")
|
2019-04-12 23:29:42 +05:00
|
|
|
|
2022-06-26 22:26:39 +05:00
|
|
|
var ctx *context.Context
|
2019-03-07 08:43:28 +05:00
|
|
|
|
2019-12-22 01:17:18 +05:00
|
|
|
// New initializes pastes package and adds necessary HTTP and API
|
2019-03-07 08:43:28 +05:00
|
|
|
// endpoints.
|
|
|
|
func New(cc *context.Context) {
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx = cc
|
2019-03-07 08:43:28 +05:00
|
|
|
|
2019-04-12 23:29:42 +05:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// HTTP endpoints.
|
|
|
|
////////////////////////////////////////////////////////////
|
2019-03-07 08:43:28 +05:00
|
|
|
// New paste.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.POST("/paste/", pastePOSTWebInterface)
|
2019-03-07 08:43:28 +05:00
|
|
|
// Show public paste.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.GET("/paste/:id", pasteGETWebInterface)
|
2019-03-07 08:43:28 +05:00
|
|
|
// Show RAW representation of public paste.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.GET("/paste/:id/raw", pasteRawGETWebInterface)
|
2019-03-07 08:43:28 +05:00
|
|
|
// Show private paste.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.GET("/paste/:id/:timestamp", pasteGETWebInterface)
|
2019-03-07 08:43:28 +05:00
|
|
|
// Show RAW representation of private paste.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.GET("/paste/:id/:timestamp/raw", pasteRawGETWebInterface)
|
2019-03-07 08:43:28 +05:00
|
|
|
// Verify access to passworded paste.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.GET("/paste/:id/:timestamp/verify", pastePasswordedVerifyGet)
|
|
|
|
ctx.Echo.POST("/paste/:id/:timestamp/verify", pastePasswordedVerifyPost)
|
2019-03-07 08:43:28 +05:00
|
|
|
// Pastes list.
|
2022-06-26 22:26:39 +05:00
|
|
|
ctx.Echo.GET("/pastes/", pastesGET)
|
|
|
|
ctx.Echo.GET("/pastes/:page", pastesGET)
|
2019-03-07 08:43:28 +05:00
|
|
|
}
|