trabajo-afectivo/lib/sequencer/unit/exchange/folders/id_path_map.rb

32 lines
793 B
Ruby
Raw Normal View History

require 'sequencer/mixin/exchange/folder'
class Sequencer
class Unit
module Exchange
module Folders
class IdPathMap < Sequencer::Unit::Base
include ::Sequencer::Mixin::Exchange::Folder
provides :ews_folder_id_path_map
def process
state.provide(:ews_folder_id_path_map) do
ids = state.optional(:ews_folder_ids)
ids ||= []
ews_folder.id_folder_map.collect do |id, folder|
next if ids.present? && ids.exclude?(id)
next if folder.total_count.blank?
next if folder.total_count.zero?
[id, ews_folder.display_path(folder)]
end.compact.to_h
end
end
end
end
end
end
end