]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/pochePictures.php
Fix bad character encoding when downloading images
[github/wallabag/wallabag.git] / inc / poche / pochePictures.php
CommitLineData
a4565e88
NL
1<?php
2/**
c95b78a8 3 * wallabag, self hostable application allowing you to not miss any content anymore
a4565e88 4 *
c95b78a8
NL
5 * @category wallabag
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
a4565e88
NL
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11/**
12 * On modifie les URLS des images dans le corps de l'article
13 */
14function filtre_picture($content, $url, $id)
15{
16 $matches = array();
17 preg_match_all('#<\s*(img)[^>]+src="([^"]*)"[^>]*>#Si', $content, $matches, PREG_SET_ORDER);
5ffe5cf5 18 foreach($matches as $i => $link) {
a4565e88 19 $link[1] = trim($link[1]);
5ffe5cf5 20 if (!preg_match('#^(([a-z]+://)|(\#))#', $link[1])) {
a4565e88
NL
21 $absolute_path = get_absolute_link($link[2],$url);
22 $filename = basename(parse_url($absolute_path, PHP_URL_PATH));
23 $directory = create_assets_directory($id);
24 $fullpath = $directory . '/' . $filename;
25 download_pictures($absolute_path, $fullpath);
26 $content = str_replace($matches[$i][2], $fullpath, $content);
27 }
28
29 }
30
31 return $content;
32}
33
34/**
35 * Retourne le lien absolu
36 */
5ffe5cf5 37function get_absolute_link($relative_link, $url) {
a4565e88
NL
38 /* return if already absolute URL */
39 if (parse_url($relative_link, PHP_URL_SCHEME) != '') return $relative_link;
40
41 /* queries and anchors */
42 if ($relative_link[0]=='#' || $relative_link[0]=='?') return $url . $relative_link;
43
44 /* parse base URL and convert to local variables:
45 $scheme, $host, $path */
46 extract(parse_url($url));
47
48 /* remove non-directory element from path */
49 $path = preg_replace('#/[^/]*$#', '', $path);
50
51 /* destroy path if relative url points to root */
52 if ($relative_link[0] == '/') $path = '';
53
54 /* dirty absolute URL */
55 $abs = $host . $path . '/' . $relative_link;
56
57 /* replace '//' or '/./' or '/foo/../' with '/' */
58 $re = array('#(/\.?/)#', '#/(?!\.\.)[^/]+/\.\./#');
59 for($n=1; $n>0; $abs=preg_replace($re, '/', $abs, -1, $n)) {}
60
61 /* absolute URL is ready! */
62 return $scheme.'://'.$abs;
63}
64
65/**
66 * Téléchargement des images
67 */
a4565e88
NL
68function download_pictures($absolute_path, $fullpath)
69{
eb1af592 70 $rawdata = Tools::getFile($absolute_path);
18209292 71 $fullpath = urldecode($fullpath);
a4565e88
NL
72
73 if(file_exists($fullpath)) {
74 unlink($fullpath);
75 }
76 $fp = fopen($fullpath, 'x');
77 fwrite($fp, $rawdata);
78 fclose($fp);
79}
80
81/**
82 * Crée un répertoire de médias pour l'article
83 */
84function create_assets_directory($id)
85{
86 $assets_path = ABS_PATH;
87 if(!is_dir($assets_path)) {
b5c1ed12 88 mkdir($assets_path, 0715);
a4565e88
NL
89 }
90
91 $article_directory = $assets_path . $id;
92 if(!is_dir($article_directory)) {
b5c1ed12 93 mkdir($article_directory, 0715);
a4565e88
NL
94 }
95
96 return $article_directory;
97}
98
99/**
100 * Suppression du répertoire d'images
101 */
102function remove_directory($directory)
103{
104 if(is_dir($directory)) {
105 $files = array_diff(scandir($directory), array('.','..'));
106 foreach ($files as $file) {
107 (is_dir("$directory/$file")) ? remove_directory("$directory/$file") : unlink("$directory/$file");
108 }
109 return rmdir($directory);
110 }
b5c1ed12 111}