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.
94 95 96 97 98 99 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 94 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.
88 89 90 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 88 def language @language end |
#path ⇒ Object
Returns the value of attribute path.
86 87 88 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 86 def path @path end |
#screen_size ⇒ Deliver::ScreenSize
Returns the screen size (device type) specified at ScreenSize.
84 85 86 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 84 def screen_size @screen_size end |
Class Method Details
.calculate_screen_size(path) ⇒ Object
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 376 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
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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 202 def self. # This list does not include iPad Pro 12.9-inch (3rd generation) # because it has same resolution as IOS_IPAD_PRO and will clobber return { ScreenSize::IOS_67_MESSAGES => [ [1290, 2796], [2796, 1290] ], ScreenSize::IOS_65_MESSAGES => [ [1242, 2688], [2688, 1242], [1284, 2778], [2778, 1284] ], ScreenSize::IOS_61_MESSAGES => [ [1179, 2556], [2556, 1179] ], 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
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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 266 def self.devices # This list does not include iPad Pro 12.9-inch (3rd generation) # because it has same resolution as IOS_IPAD_PRO and will clobber return { ScreenSize::IOS_67 => [ [1290, 2796], [2796, 1290] ], ScreenSize::IOS_65 => [ [1242, 2688], [2688, 1242], [1284, 2778], [2778, 1284] ], ScreenSize::IOS_61 => [ [1179, 2556], [2556, 1179] ], 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::IOS_APPLE_WATCH_SERIES7 => [ [396, 484] ], ScreenSize::IOS_APPLE_WATCH_ULTRA => [ [410, 502] ], ScreenSize::APPLE_TV => [ [1920, 1080], [3840, 2160] ] } end |
.resolve_ipadpro_conflict_if_needed(screen_size, filename) ⇒ Object
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 357 def self.resolve_ipadpro_conflict_if_needed(screen_size, filename) is_3rd_gen = [ "iPad Pro (12.9-inch) (3rd generation)", # Default simulator has this name "iPad Pro (12.9-inch) (4th generation)", # Default simulator has this name "iPad Pro (12.9-inch) (5th generation)", # Default simulator has this name "iPad Pro (12.9-inch) (6th generation)", # Default simulator has this name "IPAD_PRO_3GEN_129", # Screenshots downloaded from App Store Connect has this name "ipadPro129" # Legacy: screenshots downloaded from iTunes Connect used to have this name ].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
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 140 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 14 Pro", ScreenSize::IOS_65 => "iPhone XS Max", ScreenSize::IOS_67 => "iPhone 14 Pro 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 14 Pro (iMessage)", ScreenSize::IOS_65_MESSAGES => "iPhone XS Max (iMessage)", ScreenSize::IOS_67_MESSAGES => "iPhone 14 Pro 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::IOS_APPLE_WATCH_SERIES7 => "Watch Series7", ScreenSize::IOS_APPLE_WATCH_ULTRA => "Watch Ultra", ScreenSize::APPLE_TV => "Apple TV" } return matching[self.screen_size] end |
#is_messages? ⇒ Boolean
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 185 def return [ ScreenSize::IOS_40_MESSAGES, ScreenSize::IOS_47_MESSAGES, ScreenSize::IOS_55_MESSAGES, ScreenSize::IOS_58_MESSAGES, ScreenSize::IOS_61_MESSAGES, ScreenSize::IOS_65_MESSAGES, ScreenSize::IOS_67_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)
178 179 180 181 182 183 |
# File 'deliver/lib/deliver/app_screenshot.rb', line 178 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 |