Completed
Push — master ( b95acc...a5fbcd )
by Oleksandr
01:06
created

Speedhack.from_ini()   A

Complexity

Conditions 1

Size

Total Lines 18

Duplication

Lines 18
Ratio 100 %

Code Coverage

Tests 1
CRAP Score 1.125

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 18
loc 18
ccs 1
cts 2
cp 0.5
rs 9.4285
cc 1
crap 1.125
1
# coding: utf-8
2
3 1
import zope.interface
4
5 1
from schematics.models import Model
6 1
from schematics.types import IntType, FloatType, BooleanType
7
8 1
from ..interfaces import INISerializable
9
10
11 1 View Code Duplication
@zope.interface.implementer(INISerializable)
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated in your project.
Loading history...
12 1
class Speedhack(Model):
13 1
    check_server_time_speed = BooleanType(
14
        default=True,
15
        required=True,
16
    )
17 1
    check_client_time_speed = BooleanType(
18
        default=False,
19
        required=True,
20
    )
21 1
    max_time_difference = FloatType(
22
        min_value=0.01,
23
        default=0.2,
24
        required=True,
25
    )
26 1
    max_time_difference_period = FloatType(
27
        min_value=1,
28
        max_value=1000,
29
        default=17,
30
        required=True,
31
    )
32
33 1
    @classmethod
34
    def from_ini(cls, ini):
35
        return cls({
36
            'check_server_time_speed': ini.getboolean(
37
                'NET', 'checkServerTimeSpeed',
38
                fallback=cls.check_server_time_speed.default,
39
            ),
40
            'check_client_time_speed': ini.getboolean(
41
                'NET', 'checkClientTimeSpeed',
42
                fallback=cls.check_client_time_speed.default,
43
            ),
44
            'max_time_difference': ini.getfloat(
45
                'NET', 'checkTimeSpeedDifferense',
46
                fallback=cls.max_time_difference.default,
47
            ),
48
            'max_time_difference_period': ini.getfloat(
49
                'NET', 'checkTimeSpeedInterval',
50
                fallback=cls.max_time_difference_period.default,
51
            ),
52
        })
53