2018-04-30 23:07:07 +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
2018-05-01 02:37:51 +05:00
const (
2018-05-17 22:41:21 +05:00
// Pagination. Hardcoded for 10 for now.
2018-05-01 02:37:51 +05:00
PAGINATION = 10
)
2018-04-30 23:07:07 +05:00
// GetByID returns a single paste by ID.
func GetByID ( id int ) ( * Paste , error ) {
p := & Paste { }
dbConn := c . Database . GetDatabaseConnection ( )
err := dbConn . Get ( p , dbConn . Rebind ( "SELECT * FROM `pastes` WHERE id=?" ) , id )
if err != nil {
return nil , err
}
2018-05-17 22:41:21 +05:00
// Lets go with checking.
2018-04-30 23:07:07 +05:00
return p , nil
}
// GetPagedPastes returns a paged slice of pastes.
func GetPagedPastes ( page int ) ( [ ] Paste , error ) {
2018-05-17 22:41:21 +05:00
var pastesRaw [ ] Paste
2018-04-30 23:07:07 +05:00
var pastes [ ] Paste
dbConn := c . Database . GetDatabaseConnection ( )
2018-05-17 22:41:21 +05:00
// Pagination - 10 pastes on page.
2018-04-30 23:07:07 +05:00
var startPagination = 0
if page > 1 {
2018-05-01 02:37:51 +05:00
startPagination = ( page - 1 ) * PAGINATION
2018-04-30 23:07:07 +05:00
}
2018-05-17 22:41:21 +05:00
err := dbConn . Select ( & pastesRaw , dbConn . Rebind ( "SELECT * FROM `pastes` WHERE private != true ORDER BY id DESC LIMIT ? OFFSET ?" ) , PAGINATION , startPagination )
2018-04-30 23:07:07 +05:00
if err != nil {
return nil , err
}
2018-05-17 22:41:21 +05:00
for i := range pastesRaw {
if ! pastesRaw [ i ] . IsExpired ( ) {
pastes = append ( pastes , pastesRaw [ i ] )
}
}
2018-04-30 23:07:07 +05:00
return pastes , nil
}
2018-05-01 02:37:51 +05:00
// GetPastesPages returns an integer that represents quantity of pages
// that can be requested (or drawn in paginator).
func GetPastesPages ( ) int {
2018-05-17 22:41:21 +05:00
var pastesRaw [ ] Paste
var pastes [ ] Paste
2018-05-01 02:37:51 +05:00
dbConn := c . Database . GetDatabaseConnection ( )
2018-05-17 22:41:21 +05:00
err := dbConn . Get ( & pastesRaw , "SELECT * FROM `pastes` WHERE private != true" )
2018-05-01 02:37:51 +05:00
if err != nil {
return 1
}
2018-05-17 22:41:21 +05:00
// Check if pastes isn't expired.
for i := range pastesRaw {
if ! pastesRaw [ i ] . IsExpired ( ) {
pastes = append ( pastes , pastesRaw [ i ] )
}
}
2018-05-01 02:37:51 +05:00
// Calculate pages.
2018-05-17 22:41:21 +05:00
pages := len ( pastes ) / PAGINATION
2018-05-01 02:37:51 +05:00
// Check if we have any remainder. Add 1 to pages count if so.
2018-05-17 22:41:21 +05:00
if len ( pastes ) % PAGINATION > 0 {
2018-05-17 22:16:07 +05:00
pages ++
2018-05-01 02:37:51 +05:00
}
return pages
}
2018-04-30 23:07:07 +05:00
// Save saves paste to database and returns it's ID.
func Save ( p * Paste ) ( int64 , error ) {
dbConn := c . Database . GetDatabaseConnection ( )
2018-05-01 22:56:45 +05:00
result , err := dbConn . NamedExec ( "INSERT INTO `pastes` (title, data, created_at, keep_for, keep_for_unit_type, language, private) VALUES (:title, :data, :created_at, :keep_for, :keep_for_unit_type, :language, :private)" , p )
2018-04-30 23:07:07 +05:00
if err != nil {
return 0 , err
}
ID , err1 := result . LastInsertId ( )
if err1 != nil {
return 0 , err
}
return ID , nil
}