From a139b9c4ea532f62143fc14b8e82b11a7be74192 Mon Sep 17 00:00:00 2001 From: steckbrief Date: Fri, 24 Jun 2016 12:45:03 +0200 Subject: Initial version. Just for testing --- src/mvncache.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/mvncache.php diff --git a/src/mvncache.php b/src/mvncache.php new file mode 100644 index 0000000..d296a4f --- /dev/null +++ b/src/mvncache.php @@ -0,0 +1,29 @@ +"; +if (!is_dir($localFolder)) { + mkdir($localFolder, 0770, true); +} + +$srcUrl = $mvnBaseUrl.$requestedArtifact; +//echo $srcUrl."
"; +$src = fopen($srcUrl, 'r'); + +$dstPath = $baseLocalFolder.$requestedArtifact; +//echo $dstPath; +$dst = fopen($dstPath, 'w'); + +stream_copy_to_stream($src, $dst); + +if (is_file($dstPath)) { + chmod($dstPath, 0660); + header('Location: http://'.$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]); +} else { + header('HTTP/1.0 404 Not Found'); +} +?> -- cgit v1.2.3