Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
REST w Pyramidzie
Search
Łukasz Oleś
January 16, 2013
0
56
REST w Pyramidzie
Łukasz Oleś
January 16, 2013
Tweet
Share
More Decks by Łukasz Oleś
See All by Łukasz Oleś
Jak napisać dobre CV? Historia zatrudniania w Mirantis PL
lukaszo
0
91
Fuel - czyli jak stworzyć własną chmurę w ciągu godziny
lukaszo
0
160
Featured
See All Featured
Product Roadmaps are Hard
iamctodd
PRO
49
11k
Designing Experiences People Love
moore
138
23k
Code Review Best Practice
trishagee
65
17k
Raft: Consensus for Rubyists
vanstee
137
6.7k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
Building Flexible Design Systems
yeseniaperezcruz
327
38k
For a Future-Friendly Web
brad_frost
175
9.4k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Into the Great Unknown - MozCon
thekraken
33
1.5k
StorybookのUI Testing Handbookを読んだ
zakiyama
27
5.3k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.9k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
32
2.7k
Transcript
REST w Pyramidzie Łukasz Oleś
None
Prostota Minimalizm Dokumentacja Szybkość Stabilność
Działa na: • Python 2.6 – 3.3 • PyPy •
Jython • GAE
REST http://autouzupelnij.pl GET http://api.autouzupelnij.pl/v1/public/city?term=gli
REST (…)/public/city?term=gli Nazwa konta (…)/public/city?term=gli
REST (…)/public/city?term=gli Nazwa konta Kontener
REST (…)/public/city?term=gli Nazwa konta Zapytanie Kontener
Nowy projekt pcreate -t starter api \api development.ini setup.py \api
__init__.py views.py
Plik api/__init__.py from pyramid.config import Configurator def main(global_config, **settings): config
= Configurator(settings=settings) config.add_route('completion', '/v1/{account}/{container}') config.scan() return config.make_wsgi_app() pserve development.ini
Plik api/views.py from pyramid.view import view_config @view_config(route_name='completion', renderer='json', request_method='GET') def
completion(request): account = request.matchdict['account'] container = request.matchdict['container'] query = request.params.get('term', u'') storage = get_storage(account) offers = storage.suggest(container, query)) return offers
Plik api/views.py @view_config(route_name='completion', renderer='json', request_method='DELETE', permission='edit') def delete_container(request): container =
request.matchdict['container'] account = request.matchdict['account'] storage = get_storage( account) storage.delete_container(container)
Nowy element Plik api/__init__.py config.add_route('items', '/v1/{account}/{container}/{item}')
Plik api/views.py @view_config(route_name='items', renderer='json', request_method='PUT', permission='edit') def add_item(request): container =
request.matchdict['container'] account = request.matchdict['account'] item = request.matchdict['item'] storage = get_storage(account) storage.store_item(container, item)
Walidacja - dodatkowe dane { ”population” : 20000, ”province” :
”slaskie” }
Colander http://docs.pylonsproject.org/projects/colander from colander import MappingSchema, SchemaNode, Int, String class
City(MappingSchema): province = SchemaNode(String()) population = SchemaNode(Int())
Plik api/views.py @view_config(route_name='items', renderer='json', request_method='PUT', permission='edit') def add_item(request): container =
request.matchdict['container'] account = request.matchdict['account'] item = request.matchdict['item'] city = City() data = city.deserialize(request.json_body) storage = get_storage(account) storage.store_item(container, item, data)
@view_config(context=colander.Invalid) def failed_valdation(exc, request): err = json.dumps(exc.asdict()) return HTTPBadRequest(err)
Autoryzacja http://docs.pylonsproject.org/projects/pyramid/en/ latest/tutorials/wiki2/authorization.html https://ziggurat-foundations.readthedocs.org
Plik api/__init__.py from api.auth import RootFactory, auth_check def main(global_config, **settings):
config = Configurator(settings=settings, root_factory=RootFactory, authentication_policy= AuthenticationPolicy(auth_check))
COSR – poziom zaawansowany JavaScript Ajax http://autouzupelnij.pl -> http://api.autouzupelnij.pl http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
Access-Control-Allow-Origin: http://autouzupelnij.pl Access-Control-Allow-Origin: * Access-Control-Allow-Methods: POST, GET Access-Control-Allow-Headers: Content-Type COSR
– poziom zaawansowany
Plik api/__init__.py from pyramid.events import subscriber, NewResponse @subscriber(NewResponse) def add_access_list(event):
event.response.headerlist.append( ('Access-Control-Allow-Origin', '*')) COSR – poziom zaawansowany
Co dalej? Cornice http://cornice.readthedocs.org/
Pytania Łukasz Oleś
[email protected]
Dziękuję Łukasz Oleś
[email protected]