Class: Decidim::Assemblies::AssemblyImporter

Inherits:
Importers::Importer show all
Defined in:
decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb

Overview

A factory class to ensure we always create Assemblies the same way since it involves some logic.

Instance Method Summary collapse

Constructor Details

#initialize(organization, user) ⇒ AssemblyImporter

Returns a new instance of AssemblyImporter.



7
8
9
10
# File 'decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb', line 7

def initialize(organization, user)
  @organization = organization
  @user = user
end

Instance Method Details

#import(attributes, _user, opts) ⇒ Object

Public: Creates a new Assembly.

attributes - The Hash of attributes to create the Assembly with. user - The user that performs the action. opts - The options MUST contain:

- title: The +title+ for the new Assembly
- slug: The +slug+ for the new Assembly

Returns an Assembly instance.



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb', line 21

def import(attributes, _user, opts)
  title = opts[:title]
  slug = opts[:slug]
  Decidim.traceability.perform_action!(:create, Assembly, @user, visibility: "all") do
    @imported_assembly = Assembly.new(
      organization: @organization,
      title:,
      slug:,
      hashtag: attributes["hashtag"],
      subtitle: attributes["subtitle"],
      short_description: attributes["short_description"],
      description: attributes["description"],
      promoted: attributes["promoted"],
      developer_group: attributes["developer_group"],
      local_area: attributes["local_area"],
      target: attributes["target"],
      participatory_scope: attributes["participatory_scope"],
      participatory_structure: attributes["participatory_structure"],
      show_statistics: attributes["show_statistics"],
      scopes_enabled: attributes["scopes_enabled"],
      private_space: attributes["private_space"],
      reference: attributes["reference"],
      purpose_of_action: attributes["purpose_of_action"],
      composition: attributes["composition"],
      duration: attributes["duration"],
      creation_date: attributes["creation_date"],
      decidim_scope_id: attributes["decidim_scope_id"],
      closing_date_reason: attributes["closing_date_reason"],
      included_at: attributes["included_at"],
      closing_date: attributes["closing_date"],
      created_by_other: attributes["created_by_other"],
      internal_organisation: attributes["internal_organisation"],
      is_transparent: attributes["is_transparent"],
      special_features: attributes["special_features"],
      twitter_handler: attributes["twitter_handler"],
      instagram_handler: attributes["instagram_handler"],
      facebook_handler: attributes["facebook_handler"],
      youtube_handler: attributes["youtube_handler"],
      github_handler: attributes["github_handler"],
      created_by: attributes["created_by"],
      meta_scope: attributes["meta_scope"],
      announcement: attributes["announcement"]
    )
    @imported_assembly.attached_uploader(:hero_image).remote_url = attributes["remote_hero_image_url"] if attributes["remote_hero_image_url"].present?
    @imported_assembly.attached_uploader(:banner_image).remote_url = attributes["remote_banner_image_url"] if attributes["remote_banner_image_url"].present?

    @imported_assembly.save!
    @imported_assembly
  end
end

#import_assemblies_type(type_id) ⇒ Object



72
73
74
75
76
# File 'decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb', line 72

def import_assemblies_type(type_id)
  return if Decidim::AssembliesType.find_by(id: type_id).nil?

  @imported_assembly.decidim_assemblies_type_id = type_id
end

#import_categories(categories) ⇒ Object



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb', line 78

def import_categories(categories)
  return if categories.nil?

  categories.map do |category_attributes|
    category = Decidim.traceability.create!(
      Category,
      @user,
      name: category_attributes["name"],
      description: category_attributes["description"],
      parent_id: category_attributes["parent_id"],
      participatory_space: @imported_assembly
    )
    next if category_attributes["subcategories"].nil?

    category_attributes["subcategories"].map do |subcategory_attributes|
      Decidim.traceability.create!(
        Category,
        @user,
        name: subcategory_attributes["name"],
        description: subcategory_attributes["description"],
        parent_id: category.id,
        participatory_space: @imported_assembly
      )
    end
  end
end

#import_components(components) ⇒ Object

components: An Array of Hashes, each corresponding with the settings of a Decidim::Component.



137
138
139
140
141
142
# File 'decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb', line 137

def import_components(components)
  return if components.nil?

  importer = Decidim::Importers::ParticipatorySpaceComponentsImporter.new(@imported_assembly)
  importer.import(components, @user)
end

#import_folders_and_attachments(attachments) ⇒ Object



105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'decidim-assemblies/app/serializers/decidim/assemblies/assembly_importer.rb', line 105

def import_folders_and_attachments(attachments)
  return if attachments["files"].nil?

  attachments["files"].map do |file|
    next unless remote_file_exists?(file["remote_file_url"])

    file_tmp = URI.parse(file["remote_file_url"]).open

    Decidim.traceability.perform_action!("create", Attachment, @user) do
      attachment = Attachment.new(
        title: file["title"],
        description: file["description"],
        content_type: file_tmp.content_type,
        attached_to: @imported_assembly,
        weight: file["weight"],
        file: file_tmp, # Define attached_to before this
        file_size: file_tmp.size
      )
      attachment.create_attachment_collection(file["attachment_collection"])
      attachment.save!
      attachment
    end
  end

  attachments["attachment_collections"].map do |collection|
    Decidim.traceability.perform_action!("create", AttachmentCollection, @user) do
      create_attachment_collection(collection)
    end
  end
end