From b80bedd6525e59ec7dd21aa8156d2575944f101e Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Mon, 23 Jun 2008 19:20:20 +0200
Subject: [PATCH] MEDIA_SENDFILE event added

This new event wraps around the sendFile function in lib/exe/fetch.php and
allows intercepting mediafile downloads.

darcs-hash:20080623172020-7ad00-c71293c9ebbbce7559e4b34e878d364a555ebfa2.gz
---
 lib/exe/fetch.php | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/lib/exe/fetch.php b/lib/exe/fetch.php
index cdcc4dd21..c39e21173 100644
--- a/lib/exe/fetch.php
+++ b/lib/exe/fetch.php
@@ -65,6 +65,8 @@
     exit;
   }
 
+  $ORIG = $FILE;
+
   //handle image resizing/cropping
   if((substr($MIME,0,5) == 'image') && $WIDTH){
     if($HEIGHT){
@@ -75,7 +77,18 @@
   }
 
   // finally send the file to the client
-  sendFile($FILE,$MIME,$CACHE);
+  $data = array('file'   => $FILE,
+                'mime'   => $MIME,
+                'cache'  => $CACHE,
+                'orig'   => $ORIG,
+                'ext'    => $EXT,
+                'width'  => $WIDTH,
+                'height' => $HEIGHT);
+
+  $evt = new Doku_Event('MEDIA_SENDFILE', $data);
+  if ($evt->advise_before()) {
+    sendFile($data['file'],$data['mime'],$data['cache']);
+  }
 
 /* ------------------------------------------------------------------------ */
 
-- 
GitLab