-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
update_tt-rss.php
201 lines (183 loc) · 9.52 KB
/
update_tt-rss.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html>
<head>
<style>i { color: red }</style>
<title>Tiny Tiny RSS Update & Cleanup Script</title>
</head>
<body>
<?php
/* A simple script to update Tiny Tiny RSS (upload, extract and clean up).
* It takes a master.zip, i.e. a compressed snapshot from the master branch.
* Tweaks:
* - (Disabled) Adds <g>, <main> and <article> to the allowed elements in articles
* - Adds a 19px margin for when scrolling to next/previous article
* - Change the way article hashes are calculated:
* causes the option "Mark updated articles unread" to be triggered only when
* the article title or contents have been updated, not when metadata have changed
* or after you have changed your plugin configuration
* WARNING: THIS WILL RECALCULATE HASHES AND COULD MARK MANY ARTICLES AS UNREAD
* - Modify line_scroll_offset for scrolling with arrow up/down
* Removal:
* - Removes useless folders: tests, feed-icons (moved to cache/feed-icons)
* - Removes useless files: .empty, .gitignore, *.less, *.map etc.
* - Removes all language files, except for those set in $keep_langs / $keep_locale
* - Removes plugins, except for those set in $keep_plugins
* - (Disabled) Unlinks light.css.less mapping in light.css (prevents console error)
*/
$password = ''; // sha256 hash
// Tweaks
$alt_hash = FALSE; // use FALSE to disable changes
$force_curl = FALSE; // use FALSE to disable changes
$line_offset = 240; // use FALSE to disable changes
// Removal
$keep_langs = ['en', 'nl']; // use FALSE to disable
$keep_locale = ['nl_NL']; // use FALSE to disable
$keep_plugins = ['af_readability', 'af_redditimgur', 'af_proxy_http', 'auth_internal', 'bookmarklets', 'note', 'share', 'vf_shared']; // use FALSE to disable
$extracted = pathinfo(__FILE__, PATHINFO_DIRNAME) . '/tt-rss-master'; // folder from extracted zip
function remove($path, $print = true) {
chdir($GLOBALS['extracted']);
if (empty($path) || !file_exists($path)) {
echo "<li>$path <i>does not exist</i></li>";
return;
}
$error = false;
if (is_dir($path)) {
$dir = glob(($path = $path .'/') .'*');
if (array_walk($dir, __FUNCTION__, false) == @rmdir($path))
$error = is_dir($path);
} else if (!unlink($path))
$error = true;
$GLOBALS['abort'] = $error;
if ($error) echo "<li>$path <i>could not be deleted</i></li>";
else if ($print) echo "<li>$path</li>";
}
function clean($dir = false, $keep = false, $ext = false) {
if ($dir) chdir($GLOBALS['extracted'] .'/'. $dir);
$contents = glob('*'. ($ext ? $ext : ''), ($ext ? 0 : GLOB_ONLYDIR));
foreach(array_diff($contents, $keep) as $path)
remove($dir .'/'. $path);
}
function fart($file, $find, $replace) {
chdir($GLOBALS['extracted']);
$contents = file_get_contents($file);
$newcontents = str_replace($find, $replace, $contents);
if ($newcontents == $contents) {
echo ' - <i>FAILED: No changes made.</i>';
return false;
} else if (!file_put_contents($file, $newcontents)) {
echo ' - <i>FAILED: Could not save changes.</i>';
return false;
}
return true;
}
function cpTree($src, $dst) {
if (!is_dir($dst))
mkdir($dst);
$files = array_diff(scandir($src), array('.', '..'));
foreach ($files as $file)
if (is_dir("$src/$file"))
cpTree("$src/$file", "$dst/$file");
else if(!@copy("$src/$file", "$dst/$file")) {
$error = error_get_last();
echo "COPY ERROR: ".$error['type'];
echo "<br>". $error['message'];
}
}
function rmTree($dir) {
if (!is_dir($dir)) return false;
$files = array_diff(scandir($dir), array('.', '..'));
foreach ($files as $file)
is_dir("$dir/$file") ? rmTree("$dir/$file") : unlink("$dir/$file");
return rmdir($dir);
}
if (isset($_POST['submit'])) {
echo '<style>ul{columns:3} ul>li{font-size:.9rem}</style>';
if (!empty($password) && (!isset($_POST['password']) || hash('sha256', $_POST['password']) != $password))
die('Password incorrect');
if (isset($_POST['download'])) {
echo '<li>Downloading latest commit from master branch...</li>';
$target_file = '_tt-rss-update.zip';
$master = fopen('https://gitlab.tt-rss.org/tt-rss/tt-rss/-/archive/master/tt-rss-master.zip', 'r');
if (!file_put_contents($target_file, $master))
die('Download failed');
} else {
if (empty($_FILES['zip']['name'])) die('No file uploaded');
echo '<li>Uploaded to temp file <b>'. $_FILES['zip']['tmp_name'] .'</b></li>';
$target_file = '_'. basename($_FILES['zip']['name']);
if (move_uploaded_file($_FILES['zip']['tmp_name'], $target_file))
echo '<li>File <b>'. $target_file .'</b> has been uploaded</li>';
else die('Error while moving upload to '. $target_file);
}
$target_path = pathinfo(realpath($target_file), PATHINFO_DIRNAME);
$zip = new ZipArchive;
$res = $zip->open($target_file);
if ($res === true) {
rmTree($GLOBALS['extracted']);
$zip->extractTo($target_path);
$zip->close();
unlink($target_file);
echo '<li>Contents have been extracted to <b>'. $target_path .'</b></li>';
chdir($GLOBALS['extracted']);
// echo '<li>Unlinking .less source mapping in light.css</li>';
// fart('themes/light.css', '/*# sourceMappingURL=light.css.map */', '');
// echo '<li>Adding <g>, <main> and <article> to allowed elements for TorrentFreak and New Scientist articles</li>';
// fart('include/functions.php', '$allowed_elements = array(', '/* Changed by tt-rss updater script */ $allowed_elements = array(\'g\', \'main\', \'article\', ');
echo '<li>Adding margin for scrolling to articles</li>';
fart('js/Article.js', 'ctr.scrollTop = row.offsetTop', '/* Changed by tt-rss updater script */ ctr.scrollTop = row.offsetTop - (App.getInitParam("cdm_expanded") ? 18 : 0)');
if ($line_offset) {
echo '<li>Changing line offset for scrolling with cursor keys to '. $line_offset .'px</li>';
fart('js/Headlines.js', 'line_scroll_offset: 120', '/* Changed by tt-rss updater script */ line_scroll_offset: '. $line_offset);
} else echo '<li><b>Skipping</b> line offset change</li>';
if ($force_curl) {
echo '<li>Forcing the use of curl</li>';
if(!fart('classes/UrlHelper.php', ' && !ini_get("open_basedir")) {',
') { /* && !ini_get("open_basedir") Removed by tt-rss updater script in order to force the use of curl */'))
$GLOBALS['abort'] = true;
else
fart('classes/RSSUtils.php', 'not using CURL due to open_basedir restrictions',
'forcing the use of curl (tt-rss updater script)');
} else echo '<li><b>NOT forcing</b> the use of curl.</li>';
if ($alt_hash) {
echo '<li>Excluding all fields apart from title and content in article hash calculation.</li>';
if (!fart('classes/RSSUtils.php', 'calculate_article_hash(array $article, PluginHost $pluginhost): string {',
'calculate_article_hash(array $article, PluginHost $pluginhost): string { /* Changed by tt-rss updater script */ $v = $article["title"] . $article["content"]; return sha1(strip_tags(is_array($v) ? implode(",", $v) : $v));'))
if(!fart('classes/RSSUtils.php', 'calculate_article_hash($article, $pluginhost) {',
'calculate_article_hash($article, $pluginhost) { /* Changed by tt-rss updater script */ $v = $article["title"] . $article["content"]; return sha1(strip_tags(is_array($v) ? implode(",", $v) : $v));'))
$GLOBALS['abort'] = true;
} else echo '<li><b>Skipping</b> article hash change: plugin names list is still used to calculate hash.</li>';
echo '<li>Removing useless files...</li><ul>';
foreach(glob('{,*,*/*,*/*/*,*/*/*/*,*/*/*/*/*}/{.empty,.gitignore,*.less,*.map,Makefile}', GLOB_BRACE) as $file) // No spaces after comma between {}!
remove($file);
foreach(['.docker', '.vscode', '.dockerignore', '.editorconfig', '.env-dist', '.eslintrc.js', '.gitignore', '.gitlab-ci.yml', 'config.php-dist', 'feed-icons', 'utils', 'Jenkinsfile', 'CONTRIBUTING.md', 'COPYING', 'README.md'] as $item)
remove($item);
if (is_array($keep_langs)) {
echo '</ul><li>Removing unused languages (all but '. implode(', ', $keep_locale) .', '. implode(', ', $keep_langs) .')...</li><ul>';
clean('locale', $keep_locale);
foreach(glob('{,*,*/*,*/*/*}/nls', GLOB_BRACE|GLOB_ONLYDIR) as $dir)
clean($dir, $keep_langs);
$keep_nls = ['colors.js', 'tt-rss-layer_ROOT.js', 'tt-rss-layer_en-us.js'];
} else echo '<li><b>Skipping</b> language removal</li>';
if (is_array($keep_locale)) {
foreach ($keep_locale as $l)
array_push($keep_nls, 'tt-rss-layer_'. str_replace('_', '-', strtolower($l)) .'.js');
clean('lib/dojo/nls', $keep_nls, '.js');
} else echo '<li><b>Skipping</b> locale removal</li>';
if (is_array($keep_plugins)) {
echo '</ul><li>Removing unused plugins...</li><ul>';
clean('plugins', $keep_plugins);
} else echo '<li><b>Skipping</b> plugins removal</li>';
if ($GLOBALS['abort']) die ('<i>Aborting because of error<i>');
echo '</ul><li>Moving files into place...</li><ul>';
cpTree($GLOBALS['extracted'], pathinfo(__FILE__, PATHINFO_DIRNAME));
rmTree($GLOBALS['extracted']);
echo '</ul>Done.';
} else die('Could not open file for extraction');
exit;
}
?>
<form action='<?=basename(__FILE__)?>' method='post' enctype='multipart/form-data'>
<p><input type='checkbox' name='download' id='download' checked> Download latest commit from master branch</p>
<p>Or upload zip: <input type='file' name='zip' onclick="download.checked = 0"></p>
<?php if (!empty($password)): ?><p>Enter password: <input type='password' name='password' autofocus></p><?php endif ?>
<p><input type='submit' value='Submit' name='submit' onclick="this.style.opacity=0"></p>
</form></body></html>