trabajo-afectivo/lib/import/otrs/article_customer.rb

100 lines
2.2 KiB
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
module Import
module OTRS
class ArticleCustomer
include Import::Helper
def initialize(article)
import(article)
2019-06-28 11:38:49 +00:00
rescue Exceptions::UnprocessableEntity
log "ERROR: Can't extract customer from Article #{article[:id]}"
end
def self.mutex
@mutex ||= Mutex.new
end
class << self
def find(article)
email = local_email(article['From'])
return if !email
user = ::User.find_by(email: email)
user ||= ::User.find_by(login: email)
user
end
def local_email(from)
# TODO: should get unified with User#check_email
email = extract_email(from)
return if !email
email.downcase
end
private
def extract_email(from)
Mail::Address.new(from).address
rescue
return from if from !~ %r{<\s*([^>]+)}
$1.strip
end
end
private
def import(article)
find_or_create(article)
end
def find_or_create(article)
self.class.mutex.synchronize do
return if self.class.find(article)
create(article)
end
end
def create(article)
email = self.class.local_email(article['From'])
::User.create(
login: email,
firstname: extract_display_name(article['From']),
lastname: '',
email: email,
password: '',
active: true,
role_ids: roles,
updated_by_id: 1,
created_by_id: 1,
)
end
def roles
[
Role.find_by(name: 'Customer').id
]
end
def extract_display_name(from)
# do extra decoding because we needed to use field.value
Mail::Field.new('X-From', parsed_display_name(from)).to_s
end
def parsed_display_name(from)
parsed_address = Mail::Address.new(from)
return parsed_address.display_name if parsed_address.display_name
2017-11-23 08:09:44 +00:00
return from if parsed_address.comments.blank?
parsed_address.comments[0]
rescue
from
end
end
end
end