forked from faif/python-patterns
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront_controller.py
More file actions
Latest commit
79 lines (55 loc) · 1.9 KB
/
Copy pathfront_controller.py
File metadata and controls
79 lines (55 loc) · 1.9 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Gordeev Andrey <gordeev.and.and@gmail.com>
The controller provides a centralized entry point that controls and manages
request handling.
"""
classMobileView(object):
defshow_index_page(self):
print('Displaying mobile index page')
classTabletView(object):
defshow_index_page(self):
print('Displaying tablet index page')
classDispatcher(object):
def__init__(self):
self.mobile_view=MobileView()
self.tablet_view=TabletView()
defdispatch(self, request):
ifrequest.type==Request.mobile_type:
self.mobile_view.show_index_page()
elifrequest.type==Request.tablet_type:
self.tablet_view.show_index_page()
else:
print('cant dispatch the request')
classRequestController(object):
""" front controller """
def__init__(self):
self.dispatcher=Dispatcher()
defdispatch_request(self, request):
ifisinstance(request, Request):
self.dispatcher.dispatch(request)
else:
print('request must be a Request object')
classRequest(object):
""" request """
mobile_type='mobile'
tablet_type='tablet'
def__init__(self, request):
self.type=None
request=request.lower()
ifrequest==self.mobile_type:
self.type=self.mobile_type
elifrequest==self.tablet_type:
self.type=self.tablet_type
if__name__=='__main__':
front_controller=RequestController()
front_controller.dispatch_request(Request('mobile'))
front_controller.dispatch_request(Request('tablet'))
front_controller.dispatch_request(Request('desktop'))
front_controller.dispatch_request('mobile')
### OUTPUT ###
# Displaying mobile index page
# Displaying tablet index page
# cant dispatch the request
# request must be a Request object