2014-02-03 19:24:49 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-05-18 14:24:00 +00:00
|
|
|
class TranslationsController < ApplicationController
|
2015-05-07 11:23:55 +00:00
|
|
|
before_action :authentication_check, except: [:load]
|
2012-05-18 14:24:00 +00:00
|
|
|
|
2015-04-12 08:41:59 +00:00
|
|
|
# GET /translations/lang/:locale
|
2015-11-18 13:27:46 +00:00
|
|
|
def lang
|
|
|
|
render json: Translation.lang(params[:locale])
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
2015-06-28 00:16:47 +00:00
|
|
|
# PUT /translations/push
|
|
|
|
def push
|
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
|
|
|
start = Time.zone.now
|
|
|
|
Translation.push(params[:locale])
|
|
|
|
if start > Time.zone.now - 5.seconds
|
|
|
|
sleep 4
|
|
|
|
end
|
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
2015-09-21 12:20:36 +00:00
|
|
|
# POST /translations/sync/:locale
|
2015-06-28 00:16:47 +00:00
|
|
|
def sync
|
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2015-09-21 12:20:36 +00:00
|
|
|
Translation.load(params[:locale])
|
2015-06-28 00:16:47 +00:00
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
|
|
|
# POST /translations/reset
|
|
|
|
def reset
|
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
|
|
|
Translation.reset(params[:locale])
|
|
|
|
render json: { message: 'ok' }, status: :ok
|
|
|
|
end
|
|
|
|
|
2015-04-12 08:41:59 +00:00
|
|
|
# GET /translations/admin/lang/:locale
|
|
|
|
def admin
|
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2015-11-18 13:27:46 +00:00
|
|
|
render json: Translation.lang(params[:locale], true)
|
2015-04-12 08:41:59 +00:00
|
|
|
end
|
|
|
|
|
2012-05-18 14:24:00 +00:00
|
|
|
# GET /translations
|
|
|
|
def index
|
2015-06-28 00:16:47 +00:00
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2012-09-20 12:08:02 +00:00
|
|
|
model_index_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# GET /translations/1
|
|
|
|
def show
|
2015-06-28 00:16:47 +00:00
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2012-09-20 12:08:02 +00:00
|
|
|
model_show_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# POST /translations
|
|
|
|
def create
|
2015-04-12 08:41:59 +00:00
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2012-09-20 12:08:02 +00:00
|
|
|
model_create_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# PUT /translations/1
|
|
|
|
def update
|
2015-04-12 08:41:59 +00:00
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2012-09-20 12:08:02 +00:00
|
|
|
model_update_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# DELETE /translations/1
|
|
|
|
def destroy
|
2015-04-12 08:41:59 +00:00
|
|
|
return if deny_if_not_role(Z_ROLENAME_ADMIN)
|
2012-09-20 12:08:02 +00:00
|
|
|
model_destory_render(Translation, params)
|
2012-05-18 14:24:00 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|