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
59
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
95
Fuel - czyli jak stworzyć własną chmurę w ciągu godziny
lukaszo
0
160
Featured
See All Featured
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.5k
It's Worth the Effort
3n
187
28k
Documentation Writing (for coders)
carmenintech
75
5.1k
Principles of Awesome APIs and How to Build Them.
keavy
127
17k
Java REST API Framework Comparison - PWX 2021
mraible
34
8.9k
Reflections from 52 weeks, 52 projects
jeffersonlam
353
21k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
920
Mobile First: as difficult as doing things right
swwweet
225
10k
For a Future-Friendly Web
brad_frost
180
10k
GraphQLとの向き合い方2022年版
quramy
49
14k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.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]