2016-04-25 00:47:31 +00:00
|
|
|
class ApplicationController < ActionController::Base
|
2016-09-23 09:28:53 +00:00
|
|
|
# Prevent CSRF attacks by raising an exception.
|
|
|
|
# For APIs, you may want to use :null_session instead.
|
|
|
|
# protect_from_forgery with: :exception
|
2016-09-24 16:24:28 +00:00
|
|
|
include ApplicationHelper
|
2016-09-11 10:57:07 +00:00
|
|
|
|
2016-09-23 12:53:19 +00:00
|
|
|
def require_login
|
|
|
|
unless user_signed_in?
|
|
|
|
flash[:error] = "Please, Login required to use the service."
|
|
|
|
redirect_to "/users/sign_in" # halts request cycle
|
|
|
|
end
|
|
|
|
end
|
2016-09-11 10:57:07 +00:00
|
|
|
|
2016-09-23 09:28:53 +00:00
|
|
|
def get_df
|
|
|
|
df = Array.new
|
|
|
|
df_each = Hash.new
|
|
|
|
command = String.new
|
|
|
|
command << "df -hP"
|
|
|
|
puts command
|
|
|
|
output = `#{command}`.split("\n")
|
|
|
|
output.each do |t|
|
|
|
|
next if t.equal? output.first
|
|
|
|
s = t.split(' ')
|
|
|
|
df_each['Filesystem'] = s[0]
|
|
|
|
df_each['Size'] = s[1]
|
|
|
|
df_each['Used'] = s[2]
|
|
|
|
df_each['Avail'] = s[3]
|
|
|
|
df_each['Use%'] = s[4]
|
|
|
|
df_each['Mounted on'] = s[5]
|
|
|
|
df << df_each
|
|
|
|
df_each = Hash.new
|
|
|
|
end
|
|
|
|
return df
|
2016-09-03 10:03:45 +00:00
|
|
|
end
|
2016-09-11 10:57:07 +00:00
|
|
|
|
2016-09-23 09:28:53 +00:00
|
|
|
def checkDir
|
2016-09-24 16:24:28 +00:00
|
|
|
@current_dir = params[:path]
|
|
|
|
render :json => {:file => files(@current_dir) , :current => @current_dir}
|
2016-09-23 09:28:53 +00:00
|
|
|
end
|
2016-04-25 00:47:31 +00:00
|
|
|
end
|