ishapi 0.1.8.310 → 0.1.8.312

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a249c1a6507a0e3898fb1a2cfe93150ec0173a98e936cfdefe70ff994877d0f5
4
- data.tar.gz: 64b1ac2193477f7762a16c52a34a75c5fc0d0b0de596f80c346df60e97feb8c9
3
+ metadata.gz: a9c71b4515944f778dcb5c20f4ebd7e636d649520fdf5fb9b591b2f602b00c29
4
+ data.tar.gz: '08ff9da2983ffce34144f37430c4e57385726c87af5d873396ceb0bd0f89e7fb'
5
5
  SHA512:
6
- metadata.gz: 557cd50918c4918111b693b73b43b1fafc6bcf516685110f2d81f4144ea655022be2eb2f1125025fe963fc9bca1c66b6b2eb9478ab3a365506d08177dfecc750
7
- data.tar.gz: 9379e8fd188ebe42e3740dd9e47a1858fb0f576f79eaab77c217b87866a41799ed73688b73d458a07badce7cd1da525f84eb49e60b237fe658d8ae7d1335d86f
6
+ metadata.gz: 0127b40e3db3f18031980caafeccd5b46aa62c387f22768011a1f913f65e04c526310b076b702a8e00dc466ead15e1561d5e38fcf365fa48ce6194ea4af7ca24
7
+ data.tar.gz: fb487f2236aa645fab4da56f18030874dc42cba4486051ff324446d6990448e337e7c64502fa0773463a9619f79bf3e276501aaffaaf474dce49354095a2362d
@@ -11,7 +11,7 @@ class Ishapi::EmailMessageIntakeJob < Ishapi::ApplicationJob
11
11
 
12
12
  =begin
13
13
 
14
- object_key = 'k96moravpgg4f976vusakqdaoki97u11i2i3c201'
14
+ object_key = '3c7mvhfual9n8g7b9uhidi00nleeom3gahoe5n01'
15
15
  MsgStub.where({ object_key: object_key }).delete
16
16
 
17
17
  stub = MsgStub.create!({ object_key: object_key })
@@ -113,46 +113,7 @@ class Ishapi::EmailMessageIntakeJob < Ishapi::ApplicationJob
113
113
 
114
114
  ## Attachments
115
115
  the_mail.attachments.each do |att|
116
- content_type = att.content_type.split(';')[0]
117
- if content_type.include? 'image'
118
- photo = Photo.new({
119
- content_type: content_type,
120
- original_filename: att.content_type_parameters[:name],
121
- image_data: att.body.encoded,
122
- email_message_id: @message.id,
123
- })
124
- photo.decode_base64_image
125
- photo.save
126
- elsif att.filename
127
- filename = CGI.escape( att.filename )
128
-
129
- attachment = Office::EmailAttachment.new({
130
- content: att.body.decoded,
131
- content_type: att.content_type,
132
- email_message: @message,
133
- filename: filename,
134
- })
135
- begin
136
- attachment.save
137
- rescue Encoding::UndefinedConversionError
138
- @message.logs.push "Could not save an attachment"
139
- end
140
-
141
- sio = StringIO.new att.body.decoded
142
- File.open("/tmp/#{filename}", 'w:UTF-8:ASCII-8BIT') do |f|
143
- f.puts(sio.read)
144
- end
145
- asset3d = ::Gameui::Asset3d.new({
146
- object: File.open("/tmp/#{filename}"),
147
- email_message: @message,
148
- })
149
- if !asset3d.save
150
- @message.logs.push "Could not save an asset3d"
151
- end
152
-
153
- else
154
- @message.logs.push "Has an attachment with no filename?"
155
- end
116
+ @message.save_attachment( att )
156
117
  end
157
118
 
158
119
  if !@message.save
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ishapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.310
4
+ version: 0.1.8.312
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-19 00:00:00.000000000 Z
11
+ date: 2023-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails