summaryrefslogtreecommitdiff
path: root/app/controllers/statics_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/statics_controller.rb')
-rw-r--r--app/controllers/statics_controller.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/controllers/statics_controller.rb b/app/controllers/statics_controller.rb
index f2891f3..0d42fa9 100644
--- a/app/controllers/statics_controller.rb
+++ b/app/controllers/statics_controller.rb
@@ -1,5 +1,7 @@
class StaticsController < ApplicationController
+ caches_action :online, expires_in: 10.seconds, layout: false
+
def index
if current_user
redirect_to blogposts_path
@@ -14,4 +16,30 @@ class StaticsController < ApplicationController
def donate
end
+ def online
+ @players = []
+ @count = 0
+ begin
+ json = JSON.parse(File.read("/etc/minecraft/redstoner/plugins/ModuleLoader/players.json"))
+ rescue
+ flash.now[:alert] = "The server is currently offline."
+ else
+ case json["dataFormat"]
+ when "v1"
+ @players = json["players"].collect!{ |p| User.find_by(uuid: p["UUID"].tr("-", "")) or User.new(name: p["name"], ign: p["name"], uuid: p["UUID"].tr("-", ""), role: Role.get("normal"), badge: Badge.get("none"), confirmed: true) }
+ @count = json["amount"]
+ when "v2"
+ json["players"].reject{|p| !mod? && p["vanished"] == "true"}.each do |p|
+ @players.push(User.find_by(uuid: p["UUID"].tr("-", "")) || User.new(name: p["name"], ign: p["name"], uuid: p["UUID"].tr("-", ""), role: Role.get("normal"), badge: Badge.get("none"), confirmed: true))
+ end
+ @count = @players.count
+ else
+ flash.now[:alert] = "The server is using an incompatible data format. We are aware of this issue and are most likely already working on it."
+ end
+ @players.sort_by!(&:role).reverse!
+ end
+ end
+
+ def privacy
+ end
end