1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- class Transaction::SignatureDetection
- =begin
- {
- object: 'Ticket',
- type: 'update',
- object_id: 123,
- interface_handle: 'application_server', # application_server|websocket|scheduler
- changes: {
- 'attribute1' => [before, now],
- 'attribute2' => [before, now],
- },
- created_at: Time.zone.now,
- user_id: 123,
- },
- =end
- def initialize(item, params = {})
- @item = item
- @params = params
- end
- def perform
- # return if we run import mode
- return if Setting.get('import_mode')
- return if @item[:type] != 'create'
- return if @item[:object] != 'Ticket'
- ticket = Ticket.lookup(id: @item[:object_id])
- return if !ticket
- article = ticket.articles.first
- return if !article
- # if sender is not customer, do not change anything
- sender = Ticket::Article::Sender.lookup(id: article.sender_id)
- return if !sender
- return if sender['name'] != 'Customer'
- # set email attributes
- type = Ticket::Article::Type.lookup(id: article.type_id)
- return if type['name'] != 'email'
- # update current signature of user id
- ::SignatureDetection.rebuild_user(article.created_by_id)
- # user
- user = User.lookup(id: article.created_by_id)
- return if !user
- return if !user.preferences
- return if !user.preferences[:signature_detection]
- line = ::SignatureDetection.find_signature_line_by_article(
- user,
- article
- )
- article.preferences[:signature_detection] = line
- article.save
- end
- end
|