SlideShare a Scribd company logo
API DevelopmentBecoming the Platform(CakePHP for Back-End Developmentor Cake for Web Services)By Andrew CuriosoCakeFest2010
IntroductionYesterday: Designing CakePHP plug-ins for consuming APIsToday:Create your own APIBasic setupExtras
Become a platformBe “a” platformA blog is a platform
Become a platformInternal only (closed)Multi-platform (consumers)ScalableExternal (open)Everything +GrowthMash-ups!InnovationEvangelists“The Platform Play”
Who’s already a platformGoogleFacebookDiggTwitterYahoo BOSS / Flickr / Delicious / etc.SalesforceEbayAmazonGowallaFourSquareBit.lyPaypalAuthorize.netEtc…
Types of APIsPatternsRepresentation State Transfer (REST)Remote Procedure Calls (RPC)Protocols / FormatsXMLJSONYAML AMFEtc...
RESTfulRepresentational State TransferResource based (nouns)5 verbsGETPUTPOSTDELETEHEADEasy in CakePHP
Today’s AppURL shortening websiteUser authentication (simple)Create, read, update, and delete (CRUD)
Modelsiduser_idurlcreatedmodifiedusersurls
Making it RESTfulAPP/config/routes.phpRouter::mapResource(‘users’)Source: http://book.cakephp.org/view/1239/The-Simple-Setup
Security PitfallOnly you can prevent CSRFOnly POST and PUT should write dataOnly POST and DELETE should delete data
Mapping ExtensionsRouter::parseExtensions()RequestHandler componentSwitches layouts / viewsIncludes helpersParses incoming XML on POSTRouter::connect(     "/:controller/:id”,    array ("action" => "edit", "[method]" => "PUT"), array("id" => "[0-9]+”));Source: http://book.cakephp.org/view/1240/Custom-REST-Routing
Json ViewSimpleFastWide-spread<?php    echo json_encode( $url );?>APP/views/urls/json/view.ctp
JsonPP w/ paddingUses callbackCross domain<?php    if ( $callbackFunc !== false )        echo $callbackFunc.'(';    echo $content_for_layout;    if ( $callbackFunc )        echo $callbackFunc.')';   ?>function beforeFilter(){    if ( array_key_exists('callback’, $this->params[‘url’]) )        $this->set(‘callbackFunc’, $this->params[‘url’][‘callback’]);    else        $this->set(‘callbackFunc’, false);}APP/views/layouts/json/default.ctpAPP/app_controller.php
XML ViewStrongly TypedHuman readableLots of existing tools<?  echo ‘<url>’;  echo $xml->serialize( $url );  echo ‘<url>’;?>APP/views/urls/xml/view.ctp
Other ViewsHuman ReadableXMLJson / JsonPHTMLYAMLCSVSerialized PHPEtc…BinaryAMFMicrosoft ExcelPDFJPEG / PNGEtc…
Testing It Out Using cURLCreatecurl –d “url=www.example.com” http://tinyr.me/urls.jsonReadcurl http://tinyr.me/urls/123.jsonUpdatecurl –d “url=www.example.com/foo” http://tinyr.me/urls/123.jsonDeletecurl –X DELETE http://tinyr.me/urls/123.json
Done?We haveMVC filesRESTful ViewsXMLJson / JsonPWe’re missingError handlingPaginationAuthenticationAuthorizationDocumentation
Status CodesSuccess200 OK *201 Created *303 See Other *Error401 Unauthorized *402 Payment Required403 Forbidden *404 Not Found *Error (continued)405 Method Not Allowed *409 Conflict410 Gone500 Internal Server Error501 Not Implemented503 Service Unavailable
Add MethodIf not a POST request405 Method Not AllowedAlready existed303 See OtherSave success201 CreatedFailure 200 OK with explanation
Edit MethodIf not a POST or PUT request405 Method Not AllowedInvalid ID404 File Not FoundSuccess200 OKFailure200 OK with explanation
Delete MethodIf not a POST or DELETE request405 Method Not AllowedInvalid ID404 File Not FoundSuccess200 OKFailure200 OK with explanation
GlobalUser is not allowed to access resource403 Forbidden User is not logged in401 Unauthorized
Throwing ErrorsSame formatDescriptiveHumanComputerComprehensive
Implementationfunction your_action() {  …  $this->_userError(404);  …}APP/controllers/your_controller.phpfunction _userError( $code, $options=array() ) {  $codes = array(    402 => 'Payment Required',    …  );  $this->header("HTTP/1.1 {$type} {$codes[$type]}");  $this->cakeError('error'.$type, array( array( 'options' => $options ) ) );}APP/app_controller.php
Implementation{"Error": {  "code" : 404,  "description" : "File Not Found"}}APP/views/errors/error404.ctp
HTTP HeadersReturn meta-informationRate limitingPaginationEtc.
PaginationUses HTTP headersApp defined start with “X-”function paginate($object=NULL, $scope=array(), $whitelist=array() ) {    $data = parent::paginate($object,$scope,$whitelist);    // … messy code to get the object …    $this->header('X-Current-Page: '.((int)$this->params['paging'][$object->alias]['page']));    $this->header('X-Page-Limit: '.((int)$this->params['paging'][$object->alias]['options']['limit']));    $this->header('X-Page-Total: '.((int)$this->params['paging'][$object->alias]['count']));    return $data;}APP/app_controller.php
Multi-Platform DevUse a UI that makes senseBring something to the table
Platform SupportWeb BrowsersDo not support:DELETEPUTFortunately Cake…Let’s you do this:_method=DELETE
Platform SupportDELETE /urls/123.json HTTP1.1Host: www.example.comPOST /urls/123.json HTTP1.1Host: www.example.com_method=DELETE
Authentication
AuthorizationThere is no magicOne or more:user_idAdministratorModerator
DocumentationVocabularies / SchemasDTD or schema filesExamplesCodeI/OCommunityFeedback
What about SOAP and AMF?CakePHP rocks with RESTSOAP is heavyAMF is light but requires FlashBut, if you still want to, you can
Flow for SOAP and AMF
Example FlowRouterUrlsControllerAmfControllerUserPOST::gateway()::view()Return dataFormat envelope
Some final words…
Don’t ChooseViews are easy
API Developers ChecklistDocumentationExample codeDefinition files (if applicable)Unit tests
Finding the codeMIT Licensehttp://tinyr.me
Happy AniversaryHappy anniversary, Laura.1 year: Sept. 5, 2010
Andrew CuriosoContact:www.AndrewCurioso.com/contact@AndrewCurioso on Twitter

More Related Content

PDF
Hello World on Slim Framework 3.x
ODP
KEY
Intermediate PHP
PPT
PHP POWERPOINT SLIDES
PPT
Writing Friendly libraries for CodeIgniter
PDF
07 Introduction to PHP #burningkeyboards
PDF
Data Types In PHP
Hello World on Slim Framework 3.x
Intermediate PHP
PHP POWERPOINT SLIDES
Writing Friendly libraries for CodeIgniter
07 Introduction to PHP #burningkeyboards
Data Types In PHP

What's hot (20)

KEY
Using PHP
PDF
Introduction to PHP - Basics of PHP
PPT
Open Source Package PHP & MySQL
PPTX
Secure PHP Coding - Part 1
PPTX
Secure PHP Coding - Part 2
PPT
Php mysql
PPT
Introduction to PHP
PDF
Make WordPress realtime.
PPT
Php Lecture Notes
PPT
PPTX
Introduction to PHP Lecture 1
PPT
PHP - Introduction to PHP - Mazenet Solution
PDF
Flask patterns
PPT
PHP Workshop Notes
PPTX
Playing nice with others
PPT
Short Intro to PHP and MySQL
PPTX
PHP Basics
PPT
Php Calling Operators
PPTX
Oracle APEX Performance
PDF
Action View Form Helpers - 1, Season 2
Using PHP
Introduction to PHP - Basics of PHP
Open Source Package PHP & MySQL
Secure PHP Coding - Part 1
Secure PHP Coding - Part 2
Php mysql
Introduction to PHP
Make WordPress realtime.
Php Lecture Notes
Introduction to PHP Lecture 1
PHP - Introduction to PHP - Mazenet Solution
Flask patterns
PHP Workshop Notes
Playing nice with others
Short Intro to PHP and MySQL
PHP Basics
Php Calling Operators
Oracle APEX Performance
Action View Form Helpers - 1, Season 2
Ad

Similar to Cakefest 2010: API Development (20)

PDF
REST API with CakePHP
PPTX
Ei cakephp
PPTX
Cakeph pppt
PPTX
Designing CakePHP plugins for consuming APIs
KEY
CakePHP REST Plugin
PDF
CakePHP 3.0: Embracing the future
PPSX
Baking With Cake Php
PPT
Lecture n
PPT
Language literacy
PDF
Web Service and Mobile Integrated Day II
PDF
Building custom APIs
PPTX
Introduction to Monsoon PHP framework
PDF
Forget about index.php and build you applications around HTTP!
PDF
Streamlining Your Applications with Web Frameworks
PDF
Silex Cheat Sheet
PDF
Silex Cheat Sheet
PDF
Intro to CakePHP
PPT
Synapseindia reviews sharing intro cakephp
PPTX
RESTful design
PPTX
CakeFest 2013 - A-Z REST APIs
REST API with CakePHP
Ei cakephp
Cakeph pppt
Designing CakePHP plugins for consuming APIs
CakePHP REST Plugin
CakePHP 3.0: Embracing the future
Baking With Cake Php
Lecture n
Language literacy
Web Service and Mobile Integrated Day II
Building custom APIs
Introduction to Monsoon PHP framework
Forget about index.php and build you applications around HTTP!
Streamlining Your Applications with Web Frameworks
Silex Cheat Sheet
Silex Cheat Sheet
Intro to CakePHP
Synapseindia reviews sharing intro cakephp
RESTful design
CakeFest 2013 - A-Z REST APIs
Ad

Recently uploaded (20)

PDF
Ct.pdffffffffffffffffffffffffffffffffffff
PDF
oppenheimer and the story of the atomic bomb
PDF
Gess1025.pdfdadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
PDF
Commercial arboriculture Commercial Tree consultant Essex, Kent, Thaxted.pdf
PPTX
Hacking Movie – Best Films on Cybercrime & Digital Intrigue
DOCX
Nina Volyanska Controversy in Fishtank Live_ Unraveling the Mystery Behind th...
PDF
Download FL Studio Crack Latest version 2025
PPTX
BULAN K3 NASIONAL PowerPt Templates.pptx
PDF
Benben maam tess of the report on somthing
PPTX
just letters randomized coz i need to up
PPTX
understanding the Human DNA components database design
PPTX
continuous_steps_relay.pptx. Another activity
PDF
How Old Radio Shows in the 1940s and 1950s Helped Ella Fitzgerald Grow.pdf
PPTX
PRECISION AGRICULTURE- 1.pptx for agriculture
PDF
Keanu Reeves Beyond the Legendary Hollywood Movie Star.pdf
PDF
Download GTA 5 Free Full PC Game+Latest Version 2025
PPTX
Monopoly - HOW TO play in a simplified tab
PDF
WKA? #29.5: "HELLO NURSE" TRANSCRIPT.pdf
DOC
NSCAD毕业证学历认证,温哥华岛大学毕业证国外证书制作申请
PDF
Rare Big Band Arrangers Who Revolutionized Big Band Music in USA.pdf
Ct.pdffffffffffffffffffffffffffffffffffff
oppenheimer and the story of the atomic bomb
Gess1025.pdfdadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Commercial arboriculture Commercial Tree consultant Essex, Kent, Thaxted.pdf
Hacking Movie – Best Films on Cybercrime & Digital Intrigue
Nina Volyanska Controversy in Fishtank Live_ Unraveling the Mystery Behind th...
Download FL Studio Crack Latest version 2025
BULAN K3 NASIONAL PowerPt Templates.pptx
Benben maam tess of the report on somthing
just letters randomized coz i need to up
understanding the Human DNA components database design
continuous_steps_relay.pptx. Another activity
How Old Radio Shows in the 1940s and 1950s Helped Ella Fitzgerald Grow.pdf
PRECISION AGRICULTURE- 1.pptx for agriculture
Keanu Reeves Beyond the Legendary Hollywood Movie Star.pdf
Download GTA 5 Free Full PC Game+Latest Version 2025
Monopoly - HOW TO play in a simplified tab
WKA? #29.5: "HELLO NURSE" TRANSCRIPT.pdf
NSCAD毕业证学历认证,温哥华岛大学毕业证国外证书制作申请
Rare Big Band Arrangers Who Revolutionized Big Band Music in USA.pdf

Cakefest 2010: API Development

Editor's Notes

  • #2: Who am I.Introduce myVBO.About this presentation.What I’ll talk about.
  • #3: Neil – plugins to consumeNot much code.Overview.All the slides will be online right after lunch.
  • #4: Raise your hand up if you use CakePHP to handle some kind of data.Now put your hand down if you don’t have an API.If you have info why not be a platform?It doesn’t matter if the platform is very simple. A blog is a platform. It has an API for posting new articles and it has an RSS feed for syndicating them.Now that I simplified it.That’s my take.
  • #5: Even if you are developing a closed API…I hope everyone considers open APIs.All this roles up into one concept. “The platform play.” So if you need something to go back to your boss or your investors with… that’s the thing. You’re making a platform play.
  • #6: If this was five years ago...But the strategy works pretty well. TwitterFacebookBit.lyAmazonandSalesforceNow it is almost a necessity to have an API of some sort.
  • #7: There are multiple patterns for APIs. There are a couple more lesser used ones but the two big ones are REST and RPC.Within those patterns you can use one or more formats to transfer your data.
  • #8: Rest stands for Representational State Transfer incase you missed it in Neal’s presentation. As mentioned yesterday, the largest example of REST in the wild is HTTP.Luckily for us, CakePHP is usually layered on-top of HTTP so it inherits all the RESTful mechanisms.REST has a concept called resources (a specific user or comment are two examples).They are also called nouns which are acted on by verbs.There are five verbs in HTTP. We will focus on three.Finally, one last important thing… CakePHP makes REST easy.
  • #9: The app that I will be using as an example today is the simplest app that I could think of.It is a URL shortening services that allows you to authenticate and thus be able to delete and edit URLs that you yourself shortened, and also basic CRUD.
  • #10: There are two models. The user model, which is pretty standard for a CakePHP project, and the urls model which I have on the screen.A full URL shortened can, of course, get much more complicated than that. But for today I’m keeping it basic.
  • #11: Once you’ve baked your model and what not you can open up your router and map the resource. This will register all the routes you need for REST in one call.You can still do it manually if you want but you don’t have to.These are the six routes registered when you map a resource.
  • #12: One rule to live by is to never write or delete data on anything that is not a POST, PUT, or DELETE request.The main purpose of this rule is to protect against Cross Site Request Forgeries or CSRF attacks which are every difficult to defend against otherwise.Say that the add method accepted GET requests. Someone could then simply embed an image on a page with the add URL as a source and execute a add() as any user who visits the site.
  • #13: Before we begin developing views we’ll haveto tell PHP to recognize file extensions and switch the views and layouts accordingly.We do this by turning on parseExtensions in the routes.php file and including the RequestHandler component in the app_controller.The RequestHandler component is what actually switches the views. It also includes helpers automatically in the view if a helper has the same name as the extension (like XML) and parses incoming POSTed XML and assigns it to the data property of the controller.
  • #14: We now need to create a couple views.The Json view is the first and the one that I like the most. Because it is simple and easy to understand.It is fast thanks to native PHP support, and also very wide-spread.What you see here is the entire view for the view action in the urls controller.Notice the path to the view. The RequestHandler will tell Cake to look in the json folder for the appropriate view.
  • #15: We can also easily support JsonP or Json with padding.JsonP specifies a Javascript callback function to execute with the results of a request.It allows for cross domain requests because you can trigger it via a simple script-include and function calls works across domains so the callback will work just fine.One important note is that it is only for GET requests. So, as I said earlier, it shouldn’t be able to write or delete data.JsonP can be handle generically in the layout. Notice the layout path.A JsonP request always takes the callback via a query parameter. So your app controller can read in the callback then set it for use in the view. The layout then reads it sand wraps the output in it is necessary.
  • #16: Now for the XML view. And I can hear the boos now.XML does have some benefits. It is strongly typed, human readable, and has lots of existing tools available.Like Json, the view is pretty self-explanatory. Note the xml sub-directory in the view path.
  • #17: One of the best parts about using parseExtensions and RequestHandler is you can literally have as many views as you want into the data.I listed just some of them here.
  • #22: Erik’s talk.
  • #24: If you did the ACL stuff Erik was talking about…Little difficult. Default behavior is redirectController, model, and object
  • #28: Maintenance mode