Should I use controller or plugin to create REST API “post” method endpoint?Best Practices for securing a REST API / web serviceREST / SOAP endpoints for a WCF servicePUT vs. POST in RESTREST API error return good practicesUnderstanding REST: Verbs, error codes, and authenticationIf REST applications are supposed to be stateless, how do you manage sessions?Creating an API for mobile applications - Authentication and AuthorizationHow do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?Token Authentication for RESTful API: should the token be periodically changed?Wordpress REST API custom endpoint for method POST

Would life always name the light from their sun "white"

Why is it harder to turn a motor/generator with shorted terminals?

"The van's really booking"

Why didn't the Avengers use this object earlier?

Under what charges was this character executed in Game of Thrones, The Bells?

White foam around tubeless tires

Biology of a Firestarter

What is this old US Air Force plane?

Why does lemon juice reduce the "fish" odor of sea food — specifically fish?

Substring join or additional table, which is faster?

Alias for root of a polynomial

Why weren't the bells paid heed to in S8E5?

Will the volt, ampere, ohm or other electrical units change on May 20th, 2019?

Were any of the books mentioned in this scene from the movie Hackers real?

How can I add a .pem private key fingerprint entry to known_hosts before connecting with ssh?

Given 0s on Assignments with suspected and dismissed cheating?

How does this Martian habitat 3D printer built for NASA work?

Should I communicate in my applications that I'm unemployed out of choice rather than because nobody will have me?

Is this possible when it comes to the relations of P, NP, NP-Hard and NP-Complete?

Offered a new position but unknown about salary?

Single word that parallels "Recent" when discussing the near future

Is there any good reason to write "it is easy to see"?

Is it safe to use two single-pole breakers for a 240 V circuit?

How to describe a building set which is like LEGO without using the "LEGO" word?



Should I use controller or plugin to create REST API “post” method endpoint?


Best Practices for securing a REST API / web serviceREST / SOAP endpoints for a WCF servicePUT vs. POST in RESTREST API error return good practicesUnderstanding REST: Verbs, error codes, and authenticationIf REST applications are supposed to be stateless, how do you manage sessions?Creating an API for mobile applications - Authentication and AuthorizationHow do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?Token Authentication for RESTful API: should the token be periodically changed?Wordpress REST API custom endpoint for method POST






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'm building a custom Drupal 8 Module. I created a controller with several methods and then I linked a module.routing.yml to call these methods, which receives requests via REST API from external systems and proceed them and then responds. Pretty usual use-case.



I found some implementation which uses a ResourceBase to achieve REST API endpoint. My question is, if I should create a plugin extending DrupalResourceBase class or is above described approach fine? If I understand it correctly when I create a plugin extending DrupalResouceBase I can handle only one request (specified on my "uri_paths")



Now I'm dealing with user authentication. The module enables user to create content of specified content-type, but this needs to be protected in future. So anonymous users can't view or create content. I read ResourceBase documentation and saw that it has build in user authentication.



So the final question is: Should I keep my controller to handle request (GET & POST) or should I implement it as Plugin?



If anyone could give me an example or something of 'correct' way to do this, I'd be glad.










share|improve this question




























    0















    I'm building a custom Drupal 8 Module. I created a controller with several methods and then I linked a module.routing.yml to call these methods, which receives requests via REST API from external systems and proceed them and then responds. Pretty usual use-case.



    I found some implementation which uses a ResourceBase to achieve REST API endpoint. My question is, if I should create a plugin extending DrupalResourceBase class or is above described approach fine? If I understand it correctly when I create a plugin extending DrupalResouceBase I can handle only one request (specified on my "uri_paths")



    Now I'm dealing with user authentication. The module enables user to create content of specified content-type, but this needs to be protected in future. So anonymous users can't view or create content. I read ResourceBase documentation and saw that it has build in user authentication.



    So the final question is: Should I keep my controller to handle request (GET & POST) or should I implement it as Plugin?



    If anyone could give me an example or something of 'correct' way to do this, I'd be glad.










    share|improve this question
























      0












      0








      0








      I'm building a custom Drupal 8 Module. I created a controller with several methods and then I linked a module.routing.yml to call these methods, which receives requests via REST API from external systems and proceed them and then responds. Pretty usual use-case.



      I found some implementation which uses a ResourceBase to achieve REST API endpoint. My question is, if I should create a plugin extending DrupalResourceBase class or is above described approach fine? If I understand it correctly when I create a plugin extending DrupalResouceBase I can handle only one request (specified on my "uri_paths")



      Now I'm dealing with user authentication. The module enables user to create content of specified content-type, but this needs to be protected in future. So anonymous users can't view or create content. I read ResourceBase documentation and saw that it has build in user authentication.



      So the final question is: Should I keep my controller to handle request (GET & POST) or should I implement it as Plugin?



      If anyone could give me an example or something of 'correct' way to do this, I'd be glad.










      share|improve this question














      I'm building a custom Drupal 8 Module. I created a controller with several methods and then I linked a module.routing.yml to call these methods, which receives requests via REST API from external systems and proceed them and then responds. Pretty usual use-case.



      I found some implementation which uses a ResourceBase to achieve REST API endpoint. My question is, if I should create a plugin extending DrupalResourceBase class or is above described approach fine? If I understand it correctly when I create a plugin extending DrupalResouceBase I can handle only one request (specified on my "uri_paths")



      Now I'm dealing with user authentication. The module enables user to create content of specified content-type, but this needs to be protected in future. So anonymous users can't view or create content. I read ResourceBase documentation and saw that it has build in user authentication.



      So the final question is: Should I keep my controller to handle request (GET & POST) or should I implement it as Plugin?



      If anyone could give me an example or something of 'correct' way to do this, I'd be glad.







      rest post plugins drupal controller






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 at 14:42









      Patrick StarPatrick Star

      194




      194






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55314878%2fshould-i-use-controller-or-plugin-to-create-rest-api-post-method-endpoint%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55314878%2fshould-i-use-controller-or-plugin-to-create-rest-api-post-method-endpoint%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript