2017-09-13 15:09:13 +00:00
/ *
*
* Utility Functions And Stuff
* Copyright Azareal 2017 - 2018
*
* /
2017-11-10 03:33:11 +00:00
package common
2017-05-02 17:24:33 +00:00
2017-05-12 13:25:12 +00:00
import (
2017-09-03 04:50:31 +00:00
"crypto/rand"
2018-06-17 07:28:18 +00:00
"encoding/base32"
2017-09-03 04:50:31 +00:00
"encoding/base64"
"errors"
2017-05-12 13:25:12 +00:00
"fmt"
2018-05-31 06:51:31 +00:00
"html"
2017-05-12 13:25:12 +00:00
"math"
2017-09-03 04:50:31 +00:00
"os"
"strconv"
2017-05-12 13:25:12 +00:00
"strings"
2017-09-03 04:50:31 +00:00
"time"
2017-05-12 13:25:12 +00:00
"unicode"
)
2016-12-02 07:38:54 +00:00
2017-09-03 04:50:31 +00:00
// Version stores a Gosora version
type Version struct {
2017-05-07 08:31:41 +00:00
Major int
Minor int
Patch int
2017-09-03 04:50:31 +00:00
Tag string
2017-05-07 08:31:41 +00:00
TagID int
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-05-07 08:31:41 +00:00
func ( version * Version ) String ( ) ( out string ) {
out = strconv . Itoa ( version . Major ) + "." + strconv . Itoa ( version . Minor ) + "." + strconv . Itoa ( version . Patch )
if version . Tag != "" {
out += "-" + version . Tag
if version . TagID != 0 {
out += strconv . Itoa ( version . TagID )
}
}
return
}
2018-06-17 07:28:18 +00:00
// GenerateSafeString is for generating a cryptographically secure set of random bytes which is base64 encoded and safe for URLs
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2016-12-02 07:38:54 +00:00
func GenerateSafeString ( length int ) ( string , error ) {
2017-09-03 04:50:31 +00:00
rb := make ( [ ] byte , length )
2016-12-02 07:38:54 +00:00
_ , err := rand . Read ( rb )
if err != nil {
return "" , err
}
2018-05-28 11:31:19 +00:00
return base64 . URLEncoding . EncodeToString ( rb ) , nil
2016-12-03 13:45:08 +00:00
}
2018-06-17 07:28:18 +00:00
// GenerateStd32SafeString is for generating a cryptographically secure set of random bytes which is base32 encoded
// ? - Safe for URLs? Mostly likely due to the small range of characters
func GenerateStd32SafeString ( length int ) ( string , error ) {
rb := make ( [ ] byte , length )
_ , err := rand . Read ( rb )
if err != nil {
return "" , err
}
return base32 . StdEncoding . EncodeToString ( rb ) , nil
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func RelativeTimeFromString ( in string ) ( string , error ) {
2017-02-06 04:52:19 +00:00
if in == "" {
return "" , nil
}
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
t , err := time . Parse ( "2006-01-02 15:04:05" , in )
2016-12-03 13:45:08 +00:00
if err != nil {
return "" , err
}
2017-06-05 11:57:27 +00:00
2017-11-11 04:06:16 +00:00
return RelativeTime ( t ) , nil
2017-10-14 07:39:22 +00:00
}
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func RelativeTime ( t time . Time ) string {
2016-12-03 13:45:08 +00:00
diff := time . Since ( t )
hours := diff . Hours ( )
seconds := diff . Seconds ( )
2017-02-06 04:52:19 +00:00
weeks := int ( hours / 24 / 7 )
months := int ( hours / 24 / 31 )
2016-12-03 13:45:08 +00:00
switch {
2017-12-19 03:53:13 +00:00
case months > 3 :
if t . Year ( ) != time . Now ( ) . Year ( ) {
//return t.Format("Mon Jan 2 2006")
return t . Format ( "Jan 2 2006" )
}
return t . Format ( "Jan 2" )
2017-09-03 04:50:31 +00:00
case months > 1 :
2017-10-14 07:39:22 +00:00
return fmt . Sprintf ( "%d months ago" , months )
2017-09-03 04:50:31 +00:00
case months == 1 :
2017-10-14 07:39:22 +00:00
return "a month ago"
2017-09-03 04:50:31 +00:00
case weeks > 1 :
2017-10-14 07:39:22 +00:00
return fmt . Sprintf ( "%d weeks ago" , weeks )
2017-09-03 04:50:31 +00:00
case int ( hours / 24 ) == 7 :
2017-10-14 07:39:22 +00:00
return "a week ago"
2017-09-03 04:50:31 +00:00
case int ( hours / 24 ) == 1 :
2017-10-14 07:39:22 +00:00
return "1 day ago"
2017-09-03 04:50:31 +00:00
case int ( hours / 24 ) > 1 :
2017-10-14 07:39:22 +00:00
return fmt . Sprintf ( "%d days ago" , int ( hours / 24 ) )
2017-09-03 04:50:31 +00:00
case seconds <= 1 :
2017-10-14 07:39:22 +00:00
return "a moment ago"
2017-09-03 04:50:31 +00:00
case seconds < 60 :
2017-10-14 07:39:22 +00:00
return fmt . Sprintf ( "%d seconds ago" , int ( seconds ) )
2017-09-03 04:50:31 +00:00
case seconds < 120 :
2017-10-14 07:39:22 +00:00
return "a minute ago"
2017-09-03 04:50:31 +00:00
case seconds < 3600 :
2017-10-14 07:39:22 +00:00
return fmt . Sprintf ( "%d minutes ago" , int ( seconds / 60 ) )
2017-09-03 04:50:31 +00:00
case seconds < 7200 :
2017-10-14 07:39:22 +00:00
return "an hour ago"
2016-12-03 13:45:08 +00:00
}
2018-10-08 05:34:25 +00:00
return fmt . Sprintf ( "%d hours ago" , int ( seconds / 60 / 60 ) )
2017-01-03 07:47:31 +00:00
}
2018-12-14 04:08:53 +00:00
// TODO: Finish this faster and more localised version of RelativeTime
/ *
// TODO: Write a test for this
// ! Experimental
func RelativeTimeBytes ( t time . Time , lang int ) [ ] byte {
diff := time . Since ( t )
hours := diff . Hours ( )
seconds := diff . Seconds ( )
weeks := int ( hours / 24 / 7 )
months := int ( hours / 24 / 31 )
switch {
case months > 3 :
if t . Year ( ) != time . Now ( ) . Year ( ) {
return [ ] byte ( t . Format ( phrases . RTime . MultiYear ( lang ) ) )
}
return [ ] byte ( t . Format ( phrases . RTime . SingleYear ( lang ) ) )
case months > 1 :
return phrases . RTime . Months ( lang , months )
case months == 1 :
return phrases . RTime . Month ( lang )
case weeks > 1 :
return phrases . RTime . Weeks ( lang , weeks )
case int ( hours / 24 ) == 7 :
return phrases . RTime . Week ( lang )
case int ( hours / 24 ) == 1 :
return phrases . RTime . Day ( lang )
case int ( hours / 24 ) > 1 :
return phrases . RTime . Days ( lang , int ( hours / 24 ) )
case seconds <= 1 :
return phrases . RTime . Moment ( lang )
case seconds < 60 :
return phrases . RTime . Seconds ( lang , int ( seconds ) )
case seconds < 120 :
return phrases . RTime . Minute ( lang )
case seconds < 3600 :
return phrases . RTime . Minutes ( lang , int ( seconds / 60 ) )
case seconds < 7200 :
return phrases . RTime . Hour ( lang )
}
return phrases . RTime . Hours ( lang , int ( seconds / 60 / 60 ) )
}
* /
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func ConvertByteUnit ( bytes float64 ) ( float64 , string ) {
2017-05-12 13:25:12 +00:00
switch {
2017-11-11 04:06:16 +00:00
case bytes >= float64 ( Petabyte ) :
return bytes / float64 ( Petabyte ) , "PB"
case bytes >= float64 ( Terabyte ) :
return bytes / float64 ( Terabyte ) , "TB"
case bytes >= float64 ( Gigabyte ) :
return bytes / float64 ( Gigabyte ) , "GB"
case bytes >= float64 ( Megabyte ) :
return bytes / float64 ( Megabyte ) , "MB"
case bytes >= float64 ( Kilobyte ) :
return bytes / float64 ( Kilobyte ) , "KB"
2017-05-07 08:31:41 +00:00
}
2018-05-31 06:51:31 +00:00
return bytes , " bytes"
2017-05-07 08:31:41 +00:00
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func ConvertByteInUnit ( bytes float64 , unit string ) ( count float64 ) {
2017-09-03 04:50:31 +00:00
switch unit {
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
case "PB" :
2017-11-11 04:06:16 +00:00
count = bytes / float64 ( Petabyte )
2017-09-03 04:50:31 +00:00
case "TB" :
2017-11-11 04:06:16 +00:00
count = bytes / float64 ( Terabyte )
2017-09-03 04:50:31 +00:00
case "GB" :
2017-11-11 04:06:16 +00:00
count = bytes / float64 ( Gigabyte )
2017-09-03 04:50:31 +00:00
case "MB" :
2017-11-11 04:06:16 +00:00
count = bytes / float64 ( Megabyte )
2017-09-03 04:50:31 +00:00
case "KB" :
2017-11-11 04:06:16 +00:00
count = bytes / float64 ( Kilobyte )
2017-09-03 04:50:31 +00:00
default :
count = 0.1
2017-05-07 08:31:41 +00:00
}
2017-06-05 11:57:27 +00:00
2017-05-07 08:31:41 +00:00
if count < 0.1 {
count = 0.1
}
return
}
2018-06-17 07:28:18 +00:00
// TODO: Write a test for this
func FriendlyUnitToBytes ( quantity int , unit string ) ( bytes int , err error ) {
switch unit {
case "PB" :
bytes = quantity * Petabyte
case "TB" :
bytes = quantity * Terabyte
case "GB" :
bytes = quantity * Gigabyte
case "MB" :
bytes = quantity * Megabyte
case "KB" :
bytes = quantity * Kilobyte
case "" :
// Do nothing
default :
return bytes , errors . New ( "Unknown unit" )
}
return bytes , nil
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2018-05-14 08:56:56 +00:00
// TODO: Re-add T as int64
2017-11-11 04:06:16 +00:00
func ConvertUnit ( num int ) ( int , string ) {
2017-05-12 13:25:12 +00:00
switch {
2018-05-16 10:46:14 +00:00
case num >= 1000000000000 :
return num / 1000000000000 , "T"
2017-09-03 04:50:31 +00:00
case num >= 1000000000 :
return num / 1000000000 , "B"
case num >= 1000000 :
return num / 1000000 , "M"
case num >= 1000 :
return num / 1000 , "K"
2017-05-12 13:25:12 +00:00
}
2018-10-08 05:34:25 +00:00
return num , ""
2017-05-12 13:25:12 +00:00
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2018-05-14 08:56:56 +00:00
// TODO: Re-add quadrillion as int64
// TODO: Re-add trillion as int64
2017-11-11 04:06:16 +00:00
func ConvertFriendlyUnit ( num int ) ( int , string ) {
2017-05-12 13:25:12 +00:00
switch {
2018-05-16 10:46:14 +00:00
case num >= 1000000000000000 :
return 0 , " quadrillion"
case num >= 1000000000000 :
return 0 , " trillion"
2017-09-03 04:50:31 +00:00
case num >= 1000000000 :
return num / 1000000000 , " billion"
case num >= 1000000 :
return num / 1000000 , " million"
case num >= 1000 :
return num / 1000 , " thousand"
2017-05-12 13:25:12 +00:00
}
2018-10-08 05:34:25 +00:00
return num , ""
2017-05-12 13:25:12 +00:00
}
2017-12-24 07:38:46 +00:00
// TODO: Make slugs optional for certain languages across the entirety of Gosora?
// TODO: Let plugins replace NameToSlug and the URL building logic with their own
2017-11-11 04:06:16 +00:00
func NameToSlug ( name string ) ( slug string ) {
2018-04-03 04:34:07 +00:00
// TODO: Do we want this reliant on config file flags? This might complicate tests and oddball uses
if ! Config . BuildSlugs {
return ""
}
2017-06-28 12:05:26 +00:00
name = strings . TrimSpace ( name )
2017-09-03 04:50:31 +00:00
name = strings . Replace ( name , " " , " " , - 1 )
2017-06-28 12:05:26 +00:00
for _ , char := range name {
if unicode . IsLower ( char ) || unicode . IsNumber ( char ) {
slug += string ( char )
} else if unicode . IsUpper ( char ) {
slug += string ( unicode . ToLower ( char ) )
} else if unicode . IsSpace ( char ) {
slug += "-"
}
}
if slug == "" {
slug = "untitled"
}
return slug
}
2018-06-30 10:22:39 +00:00
// TODO: Write a test for this
func HasSuspiciousEmail ( email string ) bool {
lowEmail := strings . ToLower ( email )
// TODO: Use a more flexible blacklist, perhaps with a similar mechanism to the HTML tag registration system in PreparseMessage()
2018-07-05 09:54:01 +00:00
if strings . Contains ( lowEmail , "casino" ) || strings . Contains ( lowEmail , "viagra" ) || strings . Contains ( lowEmail , "pharma" ) || strings . Contains ( lowEmail , "pill" ) {
2018-06-30 10:22:39 +00:00
return true
}
var dotCount int
var shortBits int
var currentSegmentLength int
for _ , char := range lowEmail {
if char == '.' {
dotCount ++
if currentSegmentLength < 3 {
shortBits ++
}
currentSegmentLength = 0
} else {
currentSegmentLength ++
}
}
return dotCount > 7 || shortBits > 2
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2018-04-03 04:34:07 +00:00
func WeakPassword ( password string , username string , email string ) error {
lowPassword := strings . ToLower ( password )
switch {
case password == "" :
return errors . New ( "You didn't put in a password." )
case strings . Contains ( lowPassword , strings . ToLower ( username ) ) && len ( username ) > 3 :
return errors . New ( "You can't use your username in your password." )
case strings . Contains ( lowPassword , strings . ToLower ( email ) ) :
return errors . New ( "You can't use your email in your password." )
case len ( password ) < 8 :
return errors . New ( "Your password needs to be at-least eight characters long" )
2017-06-19 08:06:54 +00:00
}
2018-04-03 04:34:07 +00:00
if strings . Contains ( lowPassword , "test" ) || /*strings.Contains(password,"123456") || */ strings . Contains ( password , "123" ) || strings . Contains ( lowPassword , "password" ) || strings . Contains ( lowPassword , "qwerty" ) || strings . Contains ( lowPassword , "fuck" ) || strings . Contains ( lowPassword , "love" ) {
return errors . New ( "You may not have 'test', '123', 'password', 'qwerty', 'love' or 'fuck' in your password" )
}
2017-09-10 16:57:22 +00:00
var charMap = make ( map [ rune ] int )
2018-04-03 04:34:07 +00:00
var numbers , symbols , upper , lower int
2017-06-19 08:06:54 +00:00
for _ , char := range password {
charItem , ok := charMap [ char ]
if ok {
charItem ++
} else {
charItem = 1
}
charMap [ char ] = charItem
if unicode . IsLetter ( char ) {
if unicode . IsUpper ( char ) {
upper ++
} else {
lower ++
}
} else if unicode . IsNumber ( char ) {
numbers ++
} else {
symbols ++
}
}
if numbers == 0 {
2018-04-03 04:34:07 +00:00
return errors . New ( "You don't have any numbers in your password" )
2017-06-19 08:06:54 +00:00
}
if upper == 0 {
2018-04-03 04:34:07 +00:00
return errors . New ( "You don't have any uppercase characters in your password" )
2017-06-19 08:06:54 +00:00
}
if lower == 0 {
2018-04-03 04:34:07 +00:00
return errors . New ( "You don't have any lowercase characters in your password" )
2017-06-19 08:06:54 +00:00
}
2018-04-03 04:34:07 +00:00
if len ( password ) < 18 {
if ( len ( password ) / 2 ) > len ( charMap ) {
return errors . New ( "You don't have enough unique characters in your password" )
}
} else if ( len ( password ) / 3 ) > len ( charMap ) {
// Be a little lenient on the number of unique characters for long passwords
return errors . New ( "You don't have enough unique characters in your password" )
2017-06-19 08:06:54 +00:00
}
return nil
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-09-03 04:50:31 +00:00
func createFile ( name string ) error {
2017-08-13 11:22:34 +00:00
f , err := os . Create ( name )
2017-09-03 04:50:31 +00:00
if err != nil {
return err
}
return f . Close ( )
2017-08-13 11:22:34 +00:00
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-09-03 04:50:31 +00:00
func writeFile ( name string , content string ) ( err error ) {
2017-01-05 14:41:14 +00:00
f , err := os . Create ( name )
if err != nil {
2017-05-02 17:24:33 +00:00
return err
2017-01-05 14:41:14 +00:00
}
_ , err = f . WriteString ( content )
if err != nil {
2017-05-02 17:24:33 +00:00
return err
2017-01-05 14:41:14 +00:00
}
2017-09-03 04:50:31 +00:00
err = f . Sync ( )
if err != nil {
return err
}
return f . Close ( )
2017-01-05 14:41:14 +00:00
}
2017-01-12 02:55:08 +00:00
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
func Stripslashes ( text string ) string {
text = strings . Replace ( text , "/" , "" , - 1 )
return strings . Replace ( text , "\\" , "" , - 1 )
}
2018-10-04 09:01:07 +00:00
// The word counter might run into problems with some languages where words aren't as obviously demarcated, I would advise turning it off in those cases, or if it becomes annoying in general, really.
2017-11-11 04:06:16 +00:00
func WordCount ( input string ) ( count int ) {
2017-01-12 02:55:08 +00:00
input = strings . TrimSpace ( input )
2017-02-10 13:39:13 +00:00
if input == "" {
return 0
}
2018-10-08 05:34:25 +00:00
2017-09-10 16:57:22 +00:00
var inSpace bool
2017-01-12 02:55:08 +00:00
for _ , value := range input {
2018-09-23 23:40:52 +00:00
if unicode . IsSpace ( value ) || unicode . IsPunct ( value ) {
2017-09-10 16:57:22 +00:00
if ! inSpace {
inSpace = true
2017-01-12 02:55:08 +00:00
}
2017-09-10 16:57:22 +00:00
} else if inSpace {
2017-01-12 02:55:08 +00:00
count ++
2017-09-10 16:57:22 +00:00
inSpace = false
2017-01-12 02:55:08 +00:00
}
}
2018-10-08 05:34:25 +00:00
2017-02-10 13:39:13 +00:00
return count + 1
2017-01-12 02:55:08 +00:00
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func GetLevel ( score int ) ( level int ) {
2017-01-12 02:55:08 +00:00
var base float64 = 25
2017-05-02 17:24:33 +00:00
var current , prev float64
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
var expFactor = 2.8
2017-06-05 11:57:27 +00:00
2017-09-03 04:50:31 +00:00
for i := 1 ; ; i ++ {
2017-01-12 02:55:08 +00:00
_ , bit := math . Modf ( float64 ( i ) / 10 )
if bit == 0 {
2017-09-10 16:57:22 +00:00
expFactor += 0.1
2017-01-12 02:55:08 +00:00
}
2017-09-10 16:57:22 +00:00
current = base + math . Pow ( float64 ( i ) , expFactor ) + ( prev / 3 )
2017-01-12 02:55:08 +00:00
prev = current
if float64 ( score ) < current {
break
}
2017-02-04 06:19:55 +00:00
level ++
2017-01-12 02:55:08 +00:00
}
return level
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func GetLevelScore ( getLevel int ) ( score int ) {
2017-01-12 02:55:08 +00:00
var base float64 = 25
2018-10-08 05:34:25 +00:00
var current float64
var expFactor = 2.8
2017-06-05 11:57:27 +00:00
2018-10-08 05:34:25 +00:00
for i := 1 ; i <= getLevel ; i ++ {
2017-01-12 02:55:08 +00:00
_ , bit := math . Modf ( float64 ( i ) / 10 )
if bit == 0 {
2017-09-10 16:57:22 +00:00
expFactor += 0.1
2017-01-12 02:55:08 +00:00
}
2018-10-08 05:34:25 +00:00
current = base + math . Pow ( float64 ( i ) , expFactor ) + ( current / 3 )
//fmt.Println("level: ", i)
//fmt.Println("current: ", current)
2017-01-12 02:55:08 +00:00
}
return int ( math . Ceil ( current ) )
}
2017-09-23 19:57:13 +00:00
// TODO: Write a test for this
2017-11-11 04:06:16 +00:00
func GetLevels ( maxLevel int ) [ ] float64 {
2017-01-12 02:55:08 +00:00
var base float64 = 25
2017-05-02 17:24:33 +00:00
var current , prev float64 // = 0
Added Quick Topic.
Added Attachments.
Added Attachment Media Embeds.
Renamed a load of *Store and *Cache methods to reduce the amount of unneccesary typing.
Added petabytes as a unit and cleaned up a few of the friendly units.
Refactored the username change logic to make it easier to maintain.
Refactored the avatar change logic to make it easier to maintain.
Shadow now uses CSS Variables for most of it's colours. We have plans to transpile this to support older browsers later on!
Snuck some CSS Variables into Tempra Conflux.
Added the GroupCache interface to MemoryGroupStore.
Added the Length method to MemoryGroupStore.
Added support for a site short name.
Added the UploadFiles permission.
Renamed more functions.
Fixed the background for the left gutter on the postbit for Tempra Simple and Shadow.
Added support for if statements operating on int8, int16, int32, int32, int64, uint, uint8, uint16, uint32, uint64, float32, and float64 for the template compiler.
Added support for if statements operating on slices and maps for the template compiler.
Fixed a security exploit in reply editing.
Fixed a bug in the URL detector in the parser where it couldn't find URLs with non-standard ports.
Fixed buttons having blue outlines on focus on Shadow.
Refactored the topic creation logic to make it easier to maintain.
Made a few responsive fixes, but there's still more to do in the following commits!
2017-10-05 10:20:28 +00:00
var expFactor = 2.8
2017-01-12 02:55:08 +00:00
var out [ ] float64
out = append ( out , 0 )
2017-06-05 11:57:27 +00:00
2017-09-03 04:50:31 +00:00
for i := 1 ; i <= maxLevel ; i ++ {
2017-01-12 02:55:08 +00:00
_ , bit := math . Modf ( float64 ( i ) / 10 )
if bit == 0 {
2017-09-10 16:57:22 +00:00
expFactor += 0.1
2017-01-12 02:55:08 +00:00
}
2017-09-10 16:57:22 +00:00
current = base + math . Pow ( float64 ( i ) , expFactor ) + ( prev / 3 )
2017-01-12 02:55:08 +00:00
prev = current
out = append ( out , current )
}
return out
}
2017-01-26 13:37:50 +00:00
2018-05-31 06:51:31 +00:00
// TODO: Write a test for this
// SanitiseSingleLine is a generic function for escaping html entities and removing silly characters from usernames and topic titles. It also strips newline characters
func SanitiseSingleLine ( in string ) string {
in = strings . Replace ( in , "\n" , "" , - 1 )
in = strings . Replace ( in , "\r" , "" , - 1 )
return SanitiseBody ( in )
}
// TODO: Write a test for this
// TODO: Add more strange characters
// TODO: Strip all sub-32s minus \r and \n?
// SanitiseBody is the same as SanitiseSingleLine, but it doesn't strip newline characters
func SanitiseBody ( in string ) string {
in = strings . Replace ( in , " " , "" , - 1 ) // Strip Zero length space
in = html . EscapeString ( in )
return strings . TrimSpace ( in )
}
2017-11-11 04:06:16 +00:00
func BuildSlug ( slug string , id int ) string {
2018-04-03 04:34:07 +00:00
if slug == "" || ! Config . BuildSlugs {
Added the Social Groups plugin. This is still under construction.
Made a few improvements to the ForumStore, including bringing it's API closer in line with the other datastores, adding stubs for future subforum functionality, and improving efficiency in a few places.
The auth interface now handles all the authentication stuff.
Renamed the debug config variable to debug_mode.
Added the PluginPerms API.
Internal Errors will now dump the stack trace in the console.
Added support for installable plugins.
Refactored the routing logic so that the router now handles the common PreRoute logic(exc. /static/)
Added the CreateTable method to the query generator. It might need some tweaking to better support other database systems.
Added the same CreateTable method to the query builder.
Began work on PostgreSQL support.
Added the string-string hook type
Added the pre_render hook type.
Added the ParentID and ParentType fields to forums.
Added the get_forum_url_prefix function.
Added a more generic build_slug function.
Added the get_topic_url_prefix function.
Added the override_perms and override_forum_perms functions for bulk setting and unsetting permissions.
Added more ExtData fields in a few structs and removed them on the Perms struct as the PluginPerms API supersedes them there.
Plugins can now see the router instance.
The plugin initialisation handlers can now throw errors.
Plugins are now initialised after all the forum's subsystems are.
Refactored the unit test logic. For instance, we now use the proper .Log method rather than fmt.Println in many cases.
Sorry, we'll have to break Github's generated file detection, as the build instructions aren't working, unless I put them at the top, and they're far, far more important than getting Github to recognise the generated code as generated code.
Fixed an issue with mysql.go's _init_database() overwriting the dbpassword variable. Not a huge issue, but it is a "gotcha" for those not expecting a ':' at the start.
Fixed an issue with forum creation where the forum permissions didn't get cached.
Fixed a bug in plugin_bbcode where negative numbers in rand would crash Gosora.
Made the outputs of plugin_markdown and plugin_bbcode more compliant with the tests.
Revamped the phrase system to make it easier for us to add language pack related features in the future.
Added the WidgetMenu widget type.
Revamped the theme again. I'm experimenting to see which approach I like most.
- Excuse the little W3C rage. Some things about CSS drive me crazy :p
Tests:
Added 22 bbcode_full_parse tests.
Added 19 bbcode_regex_parse tests.
Added 27 markdown_parse tests.
Added four UserStore tests. More to come when the test database functionality is added.
Added 18 name_to_slug tests.
Hooks:
Added the pre_render hook.
Added the pre_render_forum_list hook.
Added the pre_render_view_forum hook.
Added the pre_render_topic_list hook.
Added the pre_render_view_topic hook.
Added the pre_render_profile hook.
Added the pre_render_custom_page hook.
Added the pre_render_overview hook.
Added the pre_render_create_topic hook.
Added the pre_render_account_own_edit_critical hook.
Added the pre_render_account_own_edit_avatar hook.
Added the pre_render_account_own_edit_username hook.
Added the pre_render_account_own_edit_email hook.
Added the pre_render_login hook.
Added the pre_render_register hook.
Added the pre_render_ban hook.
Added the pre_render_panel_dashboard hook.
Added the pre_render_panel_forums hook.
Added the pre_render_panel_delete_forum hook.
Added the pre_render_panel_edit_forum hook.
Added the pre_render_panel_settings hook.
Added the pre_render_panel_setting hook.
Added the pre_render_panel_plugins hook.
Added the pre_render_panel_users hook.
Added the pre_render_panel_edit_user hook.
Added the pre_render_panel_groups hook.
Added the pre_render_panel_edit_group hook.
Added the pre_render_panel_edit_group_perms hook.
Added the pre_render_panel_themes hook.
Added the pre_render_panel_mod_log hook.
Added the pre_render_error hook.
Added the pre_render_security_error hook.
Added the create_group_preappend hook.
Added the intercept_build_widgets hook.
Added the simple_forum_check_pre_perms hook.
Added the forum_check_pre_perms hook.
2017-07-09 12:06:04 +00:00
return strconv . Itoa ( id )
}
return slug + "." + strconv . Itoa ( id )
}