示例#1
0
 /**
  * Set MWP_Action_IncrementalBackup_FetchFiles action response
  */
 public function onActionResponse(MWP_Event_ActionResponse $event)
 {
     $action = $event->getRequest()->getAction();
     if ($action !== 'fetch_files' && $action !== 'dump_tables') {
         return;
     }
     // Prevent other listeners from hijacking this response
     $event->stopPropagation();
     /** @var MWP_IncrementalBackup_Model_FetchFilesResult $result */
     $result = $event->getData();
     $parts = array();
     $parts[] = new MWP_Http_MultipartResponsePart(array('content-type' => 'application/json'), json_encode($result->getServerStatistics()->toArray()));
     foreach ($result->getFiles() as $file) {
         $parts[] = new MWP_Http_MultipartResponsePart(array('content-type' => 'application/octet-stream', 'content-location' => $file->getPathname()), $file->getStream(), $file->getEncoding());
     }
     $event->setResponse(new MWP_Http_MultipartResponse($parts, $this->boundary));
 }
 public function onActionResponse(MWP_Event_ActionResponse $event)
 {
     $event->setResponse($this->getResponseForRequest($event->getRequest(), $event->getData()));
 }