aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/vk/platform.py
blob: 26f20dc069aa08e6dc0fbf08ceb95d21d71f68ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "VK scripts" project.
# For details, see https://github.com/egor-tensin/vk-scripts.
# Distributed under the MIT License.

from enum import Enum
import re

class Platform(Enum):
    MOBILE = 1
    IPHONE = 2
    IPAD = 3
    ANDROID = 4
    WINDOWS_PHONE = 5
    WINDOWS8 = 6
    WEB = 7

    @staticmethod
    def from_string(src):
        return Platform(int(src))

    def __str__(self):
        return str(self.value)

    @staticmethod
    def _uppercase_first_letter(text):
        match = re.search(r'\w', text)
        if match is None:
            return text
        return text[:match.start()] + match.group().upper() + text[match.end():]

    def get_descr_header(self):
        return self._uppercase_first_letter(_PLATFORM_DESCRIPTIONS[self])

    def get_descr_text(self):
        descr = _PLATFORM_DESCRIPTIONS[self]
        descr = descr.replace('unrecognized', 'an unrecognized')
        return 'the ' + descr

    def get_descr_text_capitalized(self):
        return self._uppercase_first_letter(self.get_descr_text())

_PLATFORM_DESCRIPTIONS = {
    Platform.MOBILE: '"mobile" web version (or unrecognized mobile app)',
    Platform.IPHONE: 'official iPhone app',
    Platform.IPAD: 'official iPad app',
    Platform.ANDROID: 'official Android app',
    Platform.WINDOWS_PHONE: 'official Windows Phone app',
    Platform.WINDOWS8: 'official Windows 8 app',
    Platform.WEB: 'web version (or unrecognized app)'
}