Gosora is an ultra-fast and secure forum software written in Go that balances usability with functionality.
Go to file
Azareal b9885e9d7a Simplified adding variant hooks.
The benchmark now uses ten replies instead of one for a more relevant result.
Slices are now used instead of maps for itemLists.
The compiled template engine now supports slice loops.
More routes are compiled now.
Fixed a bug with the sorting of the itemLists in the templates.
Guests can no longer see the reply creation forms.
Fixed the notice system.
2016-12-18 12:56:06 +00:00
experimental Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
extend Added the plugin system. 2016-12-11 16:06:17 +00:00
images Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
old-images Admins now show up in purple on posts. 2016-12-04 06:16:59 +00:00
pages Added the ability to compile templates down to Pure Go code. 2016-12-16 10:37:42 +00:00
public Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
templates Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
uploads Added the profile system. 2016-12-07 09:34:09 +00:00
.gitignore Added the profile system. 2016-12-07 09:34:09 +00:00
LICENSE Adding the files. 2016-12-02 07:38:54 +00:00
README.md Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
build.bat Added the forum cache. The rest of the code now uses it instead than firing queries on every request. 2016-12-06 10:26:48 +00:00
config.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
data.sql Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
errors.go Added the ability to compile templates down to Pure Go code. 2016-12-16 10:37:42 +00:00
extend.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
files.go Static files are now served from memory. This feature's a little experimental, so it will need a lot of testing i.i 2016-12-05 07:21:17 +00:00
forum.go Added the profile system. 2016-12-07 09:34:09 +00:00
general_test.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
gosora-linux Added the plugin system. 2016-12-11 16:06:17 +00:00
gosora.exe Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
gosora.exe~ Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
group.go Added the ability to assign users as moderators without also giving them the administrative tools. 2016-12-07 13:46:14 +00:00
main.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
mod_routes.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
mysql.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
pages.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
plugin_helloworld.go Added the ability to compile templates down to Pure Go code. 2016-12-16 10:37:42 +00:00
plugin_markdown.go Added the ability to compile templates down to Pure Go code. 2016-12-16 10:37:42 +00:00
plugin_skeleton.go Added the ability to compile templates down to Pure Go code. 2016-12-16 10:37:42 +00:00
reply.go Added the plugin system. 2016-12-11 16:06:17 +00:00
routes.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
run.bat Added the plugin system. 2016-12-11 16:06:17 +00:00
setting.go Added URL tags & the settings system. 2016-12-09 13:46:29 +00:00
template_forum.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
template_forums.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
template_profile.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
template_topic.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
template_topic_maploop.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
template_topics.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
templates.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
todo Adding the files. 2016-12-02 07:38:54 +00:00
topic.go Added URL tags & the settings system. 2016-12-09 13:46:29 +00:00
user.go Simplified adding variant hooks. 2016-12-18 12:56:06 +00:00
utils.go Static files are now served from memory. This feature's a little experimental, so it will need a lot of testing i.i 2016-12-05 07:21:17 +00:00

README.md

Gosora

A super fast forum software written in Go.

The initial code-base was forked from one of my side projects, but has now gone far beyond that.

Discord Server: https://discord.gg/eyYvtTf

Features

Basic Forum Functionality

Custom Pages

Emojis

In-memory static file, forum and group caches.

A profile system including profile comments and moderation tools for the profile owner.

A template engine which compiles templates down into machine code. Over ten times faster than html/templates.

A plugin system.

Dependencies

Go 1.7. The programming language this program is written in, and the compiler which it requires. You will need to install this. https://golang.org/doc/install

MySQL Database. You will need to setup a MySQL Database somewhere. A MariaDB Database works equally well, and is much faster than MySQL. If you're curious about how to install this, you might want to try the WNMP or XAMPP bundles on Windows. Instructions on how to do so on Linux: https://downloads.mariadb.org/mariadb/repositories/

Installation Instructions

Run the following commands:

go get github.com/go-sql-driver/mysql

go install github.com/go-sql-driver/mysql

go get golang.org/x/crypto/bcrypt

go install golang.org/x/crypto/bcrypt

Tweak the config.go file and put your database details in there. Import data.sql into the same database. Comment out the first line (put /* and */ around it), if you've already made a database, and don't want the script to generate it for you.

Set the password column of your user account in the database to what you want your password to be. The system will encrypt your password when you login for the first time.

Add -u after go get to update those libraries, if you've already got them installed.

Run the program

Linux

cd to the directory / folder the code is in.

go build

./gosora

Windows

Open up cmd.exe

cd to the directory / folder the code is in. E.g. cd /Users/Blah/Documents/gosora

go build

./gosora.exe

Alternatively, you could run the run.bat batch file on Windows.

We're also looking into ways to distribute ready made executables for Windows. While this is not a complicated endeavour, the configuration settings currently get built with the rest of the program for speed, and we will likely have to change this.

With the introduction of the new settings system, we will begin moving some of the less critical settings out of the configuration file, and will likely have a config.xml or config.ini in the future to store the critical settings in.

TO-DO

Oh my, you caught me right at the start of this project. There's nothing to see here yet, asides from the absolute basics. You might want to look again later!

More moderation features.

Fix the custom pages.

Add emails as a requirement for registration and add a simple anti-spam measure.

Add an alert system.

Add a complex permissions system.

Add a plugin system.

Tweak the CSS to make it responsive.

Nest the moderation routes to possibly speed routing up a little...?

Add a friend system.

Add more administration features.