Welcome Guest, Not a member yet? Register   Sign In
Add PURGE of RESTful paths for a single resource
#1

Hi everyone,
To quickly create a handful of RESTful paths for a single resource with the resource () method, I needed to implement the purge method to delete all deleted records.
I would like this method to be implemented.
I share the changes I made to the "system\router\RouteCollection.php" file below
I hope it is useful to someone.

I'm very sorry if I'm wrong to post here.

ADD into public function resource
*      // Generates the following routes:
*      HTTP Verb | Path        | Action        | Used for...
*      ----------+-------------+---------------+-----------------
*      PURGE       /photos/            purge           purge all deleted photos

Code:
//=======================
// Added row 874
//=======================
if (in_array('purge', $methods))
{
$this->purge($name . '/purge' , $new_name . '::purge', $options);
}

ADDED after public function delete
Code:
 /**
    * Specifies a route that is only available to PURGE requests.
    *
    * @param $from
    * @param $to
    * @param array $options
    *
    * @return \CodeIgniter\Router\RouteCollectionInterface
    */
   public function purge(string $from, $to, array $options = null): RouteCollectionInterface
   {
       $this->create('purge', $from, $to, $options);

       return $this;
   }


.php   RouteCollection.php (Size: 35.41 KB / Downloads: 59)
Codeigniter 4 - Docker Image [github] [docker hub]
Reply


Messages In This Thread
Add PURGE of RESTful paths for a single resource - by atsanna - 01-09-2019, 11:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB