2016-10-19 03:11:36 +00:00
|
|
|
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2014-11-16 22:45:57 +00:00
|
|
|
require 'resolv'
|
|
|
|
|
2012-04-10 19:57:18 +00:00
|
|
|
class GettingStartedController < ApplicationController
|
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=begin
|
|
|
|
|
|
|
|
Resource:
|
2014-11-16 22:45:57 +00:00
|
|
|
GET /api/v1/getting_started
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
"master_user": 1,
|
|
|
|
"groups": [
|
|
|
|
{
|
|
|
|
"name": "group1",
|
|
|
|
"active":true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "group2",
|
|
|
|
"active":true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
Test:
|
2014-11-16 22:45:57 +00:00
|
|
|
curl http://localhost/api/v1/getting_started -v -u #{login}:#{password}
|
2013-06-12 15:59:58 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
=end
|
|
|
|
|
2012-04-10 19:57:18 +00:00
|
|
|
def index
|
|
|
|
|
|
|
|
# check if first user already exists
|
2014-10-22 21:00:11 +00:00
|
|
|
return if setup_done_response
|
2012-04-10 19:57:18 +00:00
|
|
|
|
2015-04-08 13:55:53 +00:00
|
|
|
# check it auto wizard is already done
|
2015-05-24 21:59:11 +00:00
|
|
|
return if auto_wizard_enabled_response
|
2015-04-08 13:55:53 +00:00
|
|
|
|
2012-09-20 12:08:02 +00:00
|
|
|
# if master user already exists, we need to be authenticated
|
2014-10-22 21:00:11 +00:00
|
|
|
if setup_done
|
2012-09-20 12:08:02 +00:00
|
|
|
return if !authentication_check
|
|
|
|
end
|
|
|
|
|
2012-04-10 19:57:18 +00:00
|
|
|
# return result
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
setup_done: setup_done,
|
|
|
|
import_mode: Setting.get('import_mode'),
|
|
|
|
import_backend: Setting.get('import_backend'),
|
|
|
|
system_online_service: Setting.get('system_online_service'),
|
2014-10-22 21:00:11 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-05-24 21:59:11 +00:00
|
|
|
def auto_wizard_admin
|
|
|
|
|
|
|
|
# check if system setup is already done
|
|
|
|
return if setup_done_response
|
|
|
|
|
|
|
|
# check it auto wizard is enabled
|
|
|
|
if !AutoWizard.enabled?
|
|
|
|
render json: {
|
|
|
|
auto_wizard: false,
|
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# verify auto wizard file
|
|
|
|
auto_wizard_data = AutoWizard.data
|
|
|
|
if !auto_wizard_data || auto_wizard_data.empty?
|
|
|
|
render json: {
|
|
|
|
auto_wizard: true,
|
|
|
|
auto_wizard_success: false,
|
|
|
|
message: 'Invalid auto wizard file.',
|
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# verify auto wizard token
|
|
|
|
if auto_wizard_data['Token'] && auto_wizard_data['Token'] != params[:token]
|
|
|
|
render json: {
|
|
|
|
auto_wizard: true,
|
|
|
|
auto_wizard_success: false,
|
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# execute auto wizard
|
|
|
|
auto_wizard_admin = AutoWizard.setup
|
|
|
|
if !auto_wizard_admin
|
|
|
|
render json: {
|
|
|
|
auto_wizard: true,
|
|
|
|
auto_wizard_success: false,
|
|
|
|
message: 'Error during execution of auto wizard.',
|
|
|
|
}
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# set current session user
|
|
|
|
current_user_set(auto_wizard_admin)
|
|
|
|
|
|
|
|
# set system init to done
|
|
|
|
Setting.set('system_init_done', true)
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
auto_wizard: true,
|
|
|
|
auto_wizard_success: true,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-11-16 22:45:57 +00:00
|
|
|
def base
|
|
|
|
|
|
|
|
# check admin permissions
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.wizard')
|
2014-10-22 21:00:11 +00:00
|
|
|
|
2014-11-16 22:45:57 +00:00
|
|
|
# validate url
|
|
|
|
messages = {}
|
2017-01-16 01:16:14 +00:00
|
|
|
settings = {}
|
2014-11-20 16:04:31 +00:00
|
|
|
if !Setting.get('system_online_service')
|
2015-05-01 12:12:37 +00:00
|
|
|
if !params[:url] || params[:url] !~ %r{^(http|https)://.+?$}
|
2014-11-20 16:04:31 +00:00
|
|
|
messages[:url] = 'A URL looks like http://zammad.example.com'
|
|
|
|
end
|
2017-01-16 01:16:14 +00:00
|
|
|
|
|
|
|
# split url in http_type and fqdn
|
|
|
|
if params[:url]
|
|
|
|
if params[:url] =~ %r{^(http|https)://(.+?)(:.+?|/.+?|)$}
|
|
|
|
settings[:http_type] = $1
|
|
|
|
settings[:fqdn] = $2
|
|
|
|
else
|
|
|
|
messages[:url] = 'A URL looks like http://zammad.example.com'
|
|
|
|
end
|
|
|
|
end
|
2014-11-16 22:45:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# validate organization
|
|
|
|
if !params[:organization] || params[:organization].empty?
|
|
|
|
messages[:organization] = 'Invalid!'
|
2017-01-16 01:16:14 +00:00
|
|
|
else
|
|
|
|
settings[:organization] = params[:organization]
|
2014-11-16 22:45:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# validate image
|
2014-11-19 22:45:37 +00:00
|
|
|
if params[:logo] && params[:logo] =~ /^data:image/i
|
2016-05-10 13:06:51 +00:00
|
|
|
file = StaticAssets.data_url_attributes(params[:logo])
|
2014-12-01 07:32:35 +00:00
|
|
|
if !file[:content] || !file[:mime_type]
|
2014-11-16 22:45:57 +00:00
|
|
|
messages[:logo] = 'Unable to process image upload.'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if !messages.empty?
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
result: 'invalid',
|
|
|
|
messages: messages,
|
2014-10-22 21:00:11 +00:00
|
|
|
}
|
2014-10-22 21:26:00 +00:00
|
|
|
return
|
2014-10-22 21:00:11 +00:00
|
|
|
end
|
|
|
|
|
2014-11-16 22:45:57 +00:00
|
|
|
# save image
|
2014-11-19 22:45:37 +00:00
|
|
|
if params[:logo] && params[:logo] =~ /^data:image/i
|
2014-11-16 22:45:57 +00:00
|
|
|
|
|
|
|
# data:image/png;base64
|
2016-05-10 13:06:51 +00:00
|
|
|
file = StaticAssets.data_url_attributes(params[:logo])
|
2014-11-19 22:22:13 +00:00
|
|
|
|
|
|
|
# store image 1:1
|
2016-05-10 13:06:51 +00:00
|
|
|
StaticAssets.store_raw(file[:content], file[:mime_type])
|
2014-10-22 21:26:00 +00:00
|
|
|
end
|
2014-10-22 21:00:11 +00:00
|
|
|
|
2014-11-19 22:45:37 +00:00
|
|
|
if params[:logo_resize] && params[:logo_resize] =~ /^data:image/i
|
2014-11-19 22:22:13 +00:00
|
|
|
|
|
|
|
# data:image/png;base64
|
2016-05-10 13:06:51 +00:00
|
|
|
file = StaticAssets.data_url_attributes(params[:logo_resize])
|
2014-11-19 22:22:13 +00:00
|
|
|
|
|
|
|
# store image 1:1
|
2016-05-10 13:06:51 +00:00
|
|
|
settings[:product_logo] = StaticAssets.store(file[:content], file[:mime_type])
|
2014-11-19 22:22:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# set changed settings
|
2016-06-30 20:04:48 +00:00
|
|
|
settings.each { |key, value|
|
2014-11-19 22:22:13 +00:00
|
|
|
Setting.set(key, value)
|
|
|
|
}
|
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
render json: {
|
|
|
|
result: 'ok',
|
|
|
|
settings: settings,
|
2014-10-22 21:00:11 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-08-23 20:21:04 +00:00
|
|
|
private
|
2014-11-16 22:45:57 +00:00
|
|
|
|
2015-05-24 21:59:11 +00:00
|
|
|
def auto_wizard_enabled_response
|
|
|
|
return false if !AutoWizard.enabled?
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
auto_wizard: true
|
|
|
|
}
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2014-10-22 21:00:11 +00:00
|
|
|
def setup_done
|
2014-11-01 10:57:02 +00:00
|
|
|
#return false
|
2014-10-22 21:00:11 +00:00
|
|
|
count = User.all.count()
|
|
|
|
done = true
|
|
|
|
if count <= 2
|
|
|
|
done = false
|
|
|
|
end
|
|
|
|
done
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup_done_response
|
2015-05-24 21:59:11 +00:00
|
|
|
return false if !setup_done
|
2014-11-20 16:04:31 +00:00
|
|
|
|
2015-04-27 13:42:53 +00:00
|
|
|
groups = Group.where( active: true )
|
|
|
|
addresses = EmailAddress.where( active: true )
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
setup_done: true,
|
|
|
|
import_mode: Setting.get('import_mode'),
|
|
|
|
import_backend: Setting.get('import_backend'),
|
|
|
|
system_online_service: Setting.get('system_online_service'),
|
|
|
|
addresses: addresses,
|
|
|
|
groups: groups,
|
2015-08-04 19:42:49 +00:00
|
|
|
config: config_to_update,
|
2015-08-31 23:12:51 +00:00
|
|
|
channel_driver: {
|
|
|
|
email: EmailHelper.available_driver,
|
|
|
|
},
|
2012-04-11 06:34:56 +00:00
|
|
|
}
|
2014-10-22 21:00:11 +00:00
|
|
|
true
|
2012-04-10 19:57:18 +00:00
|
|
|
end
|
2014-10-22 21:00:11 +00:00
|
|
|
|
2015-08-04 19:42:49 +00:00
|
|
|
def config_to_update
|
2015-08-04 18:57:11 +00:00
|
|
|
{
|
|
|
|
product_logo: Setting.get('product_logo')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|