284 lines
7.6 KiB
Ruby
284 lines
7.6 KiB
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class ChannelsEmailController < ApplicationController
|
|
prepend_before_action { authentication_check && authorize! }
|
|
|
|
def index
|
|
system_online_service = Setting.get('system_online_service')
|
|
account_channel_ids = []
|
|
notification_channel_ids = []
|
|
email_address_ids = []
|
|
not_used_email_address_ids = []
|
|
accounts_fixed = []
|
|
assets = {}
|
|
Channel.order(:id).each do |channel|
|
|
if system_online_service && channel.preferences && channel.preferences['online_service_disable']
|
|
email_addresses = EmailAddress.where(channel_id: channel.id)
|
|
email_addresses.each do |email_address|
|
|
accounts_fixed.push email_address
|
|
end
|
|
next
|
|
end
|
|
assets = channel.assets(assets)
|
|
if channel.area == 'Email::Account'
|
|
account_channel_ids.push channel.id
|
|
elsif channel.area == 'Email::Notification' && channel.active
|
|
notification_channel_ids.push channel.id
|
|
end
|
|
end
|
|
EmailAddress.all.each do |email_address|
|
|
next if system_online_service && email_address.preferences && email_address.preferences['online_service_disable']
|
|
|
|
email_address_ids.push email_address.id
|
|
assets = email_address.assets(assets)
|
|
if !email_address.channel_id || !email_address.active || !Channel.exists?(id: email_address.channel_id)
|
|
not_used_email_address_ids.push email_address.id
|
|
end
|
|
end
|
|
render json: {
|
|
accounts_fixed: accounts_fixed,
|
|
assets: assets,
|
|
account_channel_ids: account_channel_ids,
|
|
notification_channel_ids: notification_channel_ids,
|
|
email_address_ids: email_address_ids,
|
|
not_used_email_address_ids: not_used_email_address_ids,
|
|
channel_driver: {
|
|
email: EmailHelper.available_driver,
|
|
},
|
|
config: {
|
|
notification_sender: Setting.get('notification_sender'),
|
|
}
|
|
}
|
|
end
|
|
|
|
def probe
|
|
|
|
# probe settings based on email and password
|
|
result = EmailHelper::Probe.full(
|
|
email: params[:email],
|
|
password: params[:password],
|
|
folder: params[:folder],
|
|
)
|
|
|
|
# verify if user+host already exists
|
|
return if result[:result] == 'ok' && account_duplicate?(result)
|
|
|
|
render json: result
|
|
end
|
|
|
|
def outbound
|
|
|
|
# verify access
|
|
return if params[:channel_id] && !check_access(params[:channel_id])
|
|
|
|
# connection test
|
|
render json: EmailHelper::Probe.outbound(params, params[:email])
|
|
end
|
|
|
|
def inbound
|
|
|
|
# verify access
|
|
return if params[:channel_id] && !check_access(params[:channel_id])
|
|
|
|
# connection test
|
|
result = EmailHelper::Probe.inbound(params)
|
|
|
|
# check account duplicate
|
|
return if account_duplicate?({ setting: { inbound: params } }, params[:channel_id])
|
|
|
|
render json: result
|
|
end
|
|
|
|
def verify
|
|
params.permit!
|
|
email = params[:email] || params[:meta][:email]
|
|
email = email.downcase
|
|
channel_id = params[:channel_id]
|
|
|
|
# verify access
|
|
return if channel_id && !check_access(channel_id)
|
|
|
|
# check account duplicate
|
|
return if account_duplicate?({ setting: { inbound: params[:inbound] } }, channel_id)
|
|
|
|
# check delivery for 30 sec.
|
|
result = EmailHelper::Verify.email(
|
|
outbound: params[:outbound].to_h,
|
|
inbound: params[:inbound].to_h,
|
|
sender: email,
|
|
subject: params[:subject],
|
|
)
|
|
|
|
if result[:result] != 'ok'
|
|
render json: result
|
|
return
|
|
end
|
|
|
|
# fallback
|
|
if !params[:group_id]
|
|
params[:group_id] = Group.first.id
|
|
end
|
|
|
|
# update account
|
|
if channel_id
|
|
channel = Channel.find(channel_id)
|
|
channel.update!(
|
|
options: {
|
|
inbound: params[:inbound].to_h,
|
|
outbound: params[:outbound].to_h,
|
|
},
|
|
group_id: params[:group_id],
|
|
last_log_in: nil,
|
|
last_log_out: nil,
|
|
status_in: 'ok',
|
|
status_out: 'ok',
|
|
)
|
|
render json: result
|
|
return
|
|
end
|
|
|
|
# create new account
|
|
channel = Channel.create(
|
|
area: 'Email::Account',
|
|
options: {
|
|
inbound: params[:inbound].to_h,
|
|
outbound: params[:outbound].to_h,
|
|
},
|
|
group_id: params[:group_id],
|
|
last_log_in: nil,
|
|
last_log_out: nil,
|
|
status_in: 'ok',
|
|
status_out: 'ok',
|
|
active: true,
|
|
)
|
|
|
|
# remember address && set channel for email address
|
|
address = EmailAddress.find_by(email: email)
|
|
|
|
# on initial setup, use placeholder email address
|
|
if Channel.count == 1
|
|
address = EmailAddress.first
|
|
end
|
|
|
|
if address
|
|
address.update!(
|
|
realname: params[:meta][:realname],
|
|
email: email,
|
|
active: true,
|
|
channel_id: channel.id,
|
|
)
|
|
else
|
|
EmailAddress.create(
|
|
realname: params[:meta][:realname],
|
|
email: email,
|
|
active: true,
|
|
channel_id: channel.id,
|
|
)
|
|
end
|
|
|
|
render json: result
|
|
end
|
|
|
|
def enable
|
|
channel = Channel.find_by(id: params[:id], area: 'Email::Account')
|
|
channel.active = true
|
|
channel.save!
|
|
render json: {}
|
|
end
|
|
|
|
def disable
|
|
channel = Channel.find_by(id: params[:id], area: 'Email::Account')
|
|
channel.active = false
|
|
channel.save!
|
|
render json: {}
|
|
end
|
|
|
|
def destroy
|
|
channel = Channel.find_by(id: params[:id], area: 'Email::Account')
|
|
channel.destroy
|
|
render json: {}
|
|
end
|
|
|
|
def group
|
|
check_access
|
|
channel = Channel.find_by(id: params[:id], area: 'Email::Account')
|
|
channel.group_id = params[:group_id]
|
|
channel.save!
|
|
render json: {}
|
|
end
|
|
|
|
def notification
|
|
params.permit!
|
|
|
|
check_online_service
|
|
|
|
adapter = params[:adapter].downcase
|
|
|
|
email = Setting.get('notification_sender')
|
|
|
|
# connection test
|
|
result = EmailHelper::Probe.outbound(params, email)
|
|
|
|
# save settings
|
|
if result[:result] == 'ok'
|
|
|
|
Channel.where(area: 'Email::Notification').each do |channel|
|
|
active = false
|
|
if adapter.match?(%r{^#{channel.options[:outbound][:adapter]}$}i)
|
|
active = true
|
|
channel.options = {
|
|
outbound: {
|
|
adapter: adapter,
|
|
options: params[:options].to_h,
|
|
},
|
|
}
|
|
channel.status_out = 'ok'
|
|
channel.last_log_out = nil
|
|
end
|
|
channel.active = active
|
|
channel.save
|
|
end
|
|
end
|
|
render json: result
|
|
end
|
|
|
|
private
|
|
|
|
def account_duplicate?(result, channel_id = nil)
|
|
Channel.where(area: 'Email::Account').each do |channel|
|
|
next if !channel.options
|
|
next if !channel.options[:inbound]
|
|
next if !channel.options[:inbound][:adapter]
|
|
next if channel.options[:inbound][:adapter] != result[:setting][:inbound][:adapter]
|
|
next if channel.options[:inbound][:options][:host] != result[:setting][:inbound][:options][:host]
|
|
next if channel.options[:inbound][:options][:user] != result[:setting][:inbound][:options][:user]
|
|
next if channel.options[:inbound][:options][:folder].to_s != result[:setting][:inbound][:options][:folder].to_s
|
|
next if channel.id.to_s == channel_id.to_s
|
|
|
|
render json: {
|
|
result: 'duplicate',
|
|
message: __('Account already exists!'),
|
|
}
|
|
return true
|
|
end
|
|
false
|
|
end
|
|
|
|
def check_online_service
|
|
return true if !Setting.get('system_online_service')
|
|
|
|
raise Exceptions::Forbidden
|
|
end
|
|
|
|
def check_access(id = nil)
|
|
if !id
|
|
id = params[:id]
|
|
end
|
|
return true if !Setting.get('system_online_service')
|
|
|
|
channel = Channel.find(id)
|
|
return true if channel.preferences && !channel.preferences[:online_service_disable]
|
|
|
|
raise Exceptions::Forbidden
|
|
end
|
|
end
|