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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Łukasz Oleś
January 16, 2013
61
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
REST w Pyramidzie
Łukasz Oleś
January 16, 2013
More Decks by Łukasz Oleś
See All by Łukasz Oleś
Jak napisać dobre CV? Historia zatrudniania w Mirantis PL
lukaszo
0
100
Fuel - czyli jak stworzyć własną chmurę w ciągu godziny
lukaszo
0
170
Featured
See All Featured
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.9k
Stop Working from a Prison Cell
hatefulcrawdad
274
21k
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.9k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.8k
The Pragmatic Product Professional
lauravandoore
37
7.3k
Principles of Awesome APIs and How to Build Them.
keavy
128
18k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
B2B Lead Gen: Tactics, Traps & Triumph
marketingsoph
0
160
A Soul's Torment
seathinner
6
3k
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
170
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
440
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.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]