Class: Deliver::AppScreenshot
- Inherits:
-
Object
- Object
- Deliver::AppScreenshot
- Defined in:
- deliver/lib/deliver/app_screenshot.rb
Overview
AppScreenshot represents one screenshots for one specific locale and device type.
Defined Under Namespace
Modules: ScreenSize
Instance Attribute Summary collapse
-
#language ⇒ Object
Returns the value of attribute language.
-
#path ⇒ Object
Returns the value of attribute path.
-
#screen_size ⇒ Deliver::ScreenSize
The screen size (device type) specified at ScreenSize.
Class Method Summary collapse
- .calculate_screen_size(path) ⇒ Object
- .device_messages ⇒ Object
-
.devices ⇒ Object
reference: help.apple.com/app-store-connect/#/devd274dd925.
- .resolve_ipadpro_conflict_if_needed(screen_size, filename) ⇒ Object
Instance Method Summary collapse
-
#device_type ⇒ Object
The iTC API requires a different notation for the device.
-
#formatted_name ⇒ Object
Nice name.
-
#initialize(path, language, screen_size = nil) ⇒ AppScreenshot
constructor
A new instance of AppScreenshot.
- #is_messages? ⇒ Boolean
-
#is_valid? ⇒ Boolean
Validates the given screenshots (size and format).
Constructor Details
#initialize(path, language, screen_size = nil) ⇒ AppScreenshot
Returns a new instance of AppScreenshot.
86 87 88 89 90 91 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 86 def initialize(path, language, screen_size = nil) UI.deprecated('`screen_size` for Deliver::AppScreenshot.new is deprecated in favor of the default behavior to calculate size automatically. Passed value is no longer validated.') if screen_size self.path = path self.language = language self.screen_size = screen_size || self.class.calculate_screen_size(path) end |
Instance Attribute Details
#language ⇒ Object
Returns the value of attribute language.
80 81 82 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 80 def language @language end |
#path ⇒ Object
Returns the value of attribute path.
78 79 80 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 78 def path @path end |
#screen_size ⇒ Deliver::ScreenSize
Returns the screen size (device type) specified at ScreenSize.
76 77 78 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 76 def screen_size @screen_size end |
Class Method Details
.calculate_screen_size(path) ⇒ Object
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 339 def self.calculate_screen_size(path) size = FastImage.size(path) UI.user_error!("Could not find or parse file at path '#{path}'") if size.nil? || size.count == 0 # iMessage screenshots have same resolution as app screenshots so we need to distinguish them path_component = Pathname.new(path).each_filename.to_a[-3] devices = path_component.eql?("iMessage") ? self. : self.devices devices.each do |screen_size, resolutions| if resolutions.include?(size) filename = Pathname.new(path).basename.to_s return resolve_ipadpro_conflict_if_needed(screen_size, filename) end end nil end |
.device_messages ⇒ Object
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 182 def self. # This list does not include iPad Pro 12.9-inch (3rd generation) # because it has same resoluation as IOS_IPAD_PRO and will clobber return { ScreenSize::IOS_65_MESSAGES => [ [1242, 2688], [2688, 1242], [1284, 2778], [2778, 1284] ], ScreenSize::IOS_61_MESSAGES => [ [828, 1792], [1792, 828] ], ScreenSize::IOS_58_MESSAGES => [ [1125, 2436], [2436, 1125], [1170, 2532], [2532, 1170] ], ScreenSize::IOS_55_MESSAGES => [ [1242, 2208], [2208, 1242] ], ScreenSize::IOS_47_MESSAGES => [ [750, 1334], [1334, 750] ], ScreenSize::IOS_40_MESSAGES => [ [640, 1096], [640, 1136], [1136, 600], [1136, 640] ], ScreenSize::IOS_IPAD_MESSAGES => [ [1024, 748], [1024, 768], [2048, 1496], [2048, 1536], [768, 1004], [768, 1024], [1536, 2008], [1536, 2048] ], ScreenSize::IOS_IPAD_10_5_MESSAGES => [ [1668, 2224], [2224, 1668] ], ScreenSize::IOS_IPAD_11_MESSAGES => [ [1668, 2388], [2388, 1668] ], ScreenSize::IOS_IPAD_PRO_MESSAGES => [ [2732, 2048], [2048, 2732] ] } end |
.devices ⇒ Object
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 242 def self.devices # This list does not include iPad Pro 12.9-inch (3rd generation) # because it has same resoluation as IOS_IPAD_PRO and will clobber return { ScreenSize::IOS_65 => [ [1242, 2688], [2688, 1242], [1284, 2778], [2778, 1284] ], ScreenSize::IOS_61 => [ [828, 1792], [1792, 828] ], ScreenSize::IOS_58 => [ [1125, 2436], [2436, 1125], [1170, 2532], [2532, 1170] ], ScreenSize::IOS_55 => [ [1242, 2208], [2208, 1242] ], ScreenSize::IOS_47 => [ [750, 1334], [1334, 750] ], ScreenSize::IOS_40 => [ [640, 1096], [640, 1136], [1136, 600], [1136, 640] ], ScreenSize::IOS_35 => [ [640, 920], [640, 960], [960, 600], [960, 640] ], ScreenSize::IOS_IPAD => [ # 9.7 inch [1024, 748], [1024, 768], [2048, 1496], [2048, 1536], [768, 1004], # portrait without status bar [768, 1024], [1536, 2008], # portrait without status bar [1536, 2048] ], ScreenSize::IOS_IPAD_10_5 => [ [1668, 2224], [2224, 1668] ], ScreenSize::IOS_IPAD_11 => [ [1668, 2388], [2388, 1668] ], ScreenSize::IOS_IPAD_PRO => [ [2732, 2048], [2048, 2732] ], ScreenSize::MAC => [ [1280, 800], [1440, 900], [2560, 1600], [2880, 1800] ], ScreenSize::IOS_APPLE_WATCH => [ [312, 390] ], ScreenSize::IOS_APPLE_WATCH_SERIES4 => [ [368, 448] ], ScreenSize::APPLE_TV => [ [1920, 1080], [3840, 2160] ] } end |
.resolve_ipadpro_conflict_if_needed(screen_size, filename) ⇒ Object
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 323 def self.resolve_ipadpro_conflict_if_needed(screen_size, filename) is_3rd_gen = [ "iPad Pro (12.9-inch) (3rd generation)", # default simulator name has this "iPad Pro (12.9-inch) (4th generation)", # default simulator name has this "ipadPro129" # downloaded screenshots name has this ].any? { |key| filename.include?(key) } if is_3rd_gen if screen_size == ScreenSize::IOS_IPAD_PRO return ScreenSize::IOS_IPAD_PRO_12_9 elsif screen_size == ScreenSize::IOS_IPAD_PRO_MESSAGES return ScreenSize::IOS_IPAD_PRO_12_9_MESSAGES end end screen_size end |
Instance Method Details
#device_type ⇒ Object
The iTC API requires a different notation for the device
#formatted_name ⇒ Object
Nice name
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 126 def formatted_name matching = { ScreenSize::IOS_35 => "iPhone 4", ScreenSize::IOS_40 => "iPhone 5", ScreenSize::IOS_47 => "iPhone 6", # also 7 & 8 ScreenSize::IOS_55 => "iPhone 6 Plus", # also 7 Plus & 8 Plus ScreenSize::IOS_58 => "iPhone XS", ScreenSize::IOS_61 => "iPhone XR", ScreenSize::IOS_65 => "iPhone XS Max", ScreenSize::IOS_IPAD => "iPad", ScreenSize::IOS_IPAD_10_5 => "iPad 10.5", ScreenSize::IOS_IPAD_11 => "iPad 11", ScreenSize::IOS_IPAD_PRO => "iPad Pro", ScreenSize::IOS_IPAD_PRO_12_9 => "iPad Pro (12.9-inch) (3rd generation)", ScreenSize::IOS_40_MESSAGES => "iPhone 5 (iMessage)", ScreenSize::IOS_47_MESSAGES => "iPhone 6 (iMessage)", # also 7 & 8 ScreenSize::IOS_55_MESSAGES => "iPhone 6 Plus (iMessage)", # also 7 Plus & 8 Plus ScreenSize::IOS_58_MESSAGES => "iPhone XS (iMessage)", ScreenSize::IOS_61_MESSAGES => "iPhone XR (iMessage)", ScreenSize::IOS_65_MESSAGES => "iPhone XS Max (iMessage)", ScreenSize::IOS_IPAD_MESSAGES => "iPad (iMessage)", ScreenSize::IOS_IPAD_PRO_MESSAGES => "iPad Pro (iMessage)", ScreenSize::IOS_IPAD_PRO_12_9_MESSAGES => "iPad Pro (12.9-inch) (3rd generation) (iMessage)", ScreenSize::IOS_IPAD_10_5_MESSAGES => "iPad 10.5 (iMessage)", ScreenSize::IOS_IPAD_11_MESSAGES => "iPad 11 (iMessage)", ScreenSize::MAC => "Mac", ScreenSize::IOS_APPLE_WATCH => "Watch", ScreenSize::IOS_APPLE_WATCH_SERIES4 => "Watch Series4", ScreenSize::APPLE_TV => "Apple TV" } return matching[self.screen_size] end |
#is_messages? ⇒ Boolean
167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 167 def return [ ScreenSize::IOS_40_MESSAGES, ScreenSize::IOS_47_MESSAGES, ScreenSize::IOS_55_MESSAGES, ScreenSize::IOS_58_MESSAGES, ScreenSize::IOS_65_MESSAGES, ScreenSize::IOS_IPAD_MESSAGES, ScreenSize::IOS_IPAD_PRO_MESSAGES, ScreenSize::IOS_IPAD_PRO_12_9_MESSAGES, ScreenSize::IOS_IPAD_10_5_MESSAGES, ScreenSize::IOS_IPAD_11_MESSAGES ].include?(self.screen_size) end |
#is_valid? ⇒ Boolean
Validates the given screenshots (size and format)
160 161 162 163 164 165 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 160 def is_valid? UI.deprecated('Deliver::AppScreenshot#is_valid? is deprecated in favor of Deliver::AppScreenshotValidator') return false unless ["png", "PNG", "jpg", "JPG", "jpeg", "JPEG"].include?(self.path.split(".").last) return self.screen_size == self.class.calculate_screen_size(self.path) end |