Skip to content

Commit

Permalink
add nc-previews-auto
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoparker committed Mar 13, 2019
1 parent d7bbe25 commit 06073ed
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 2 deletions.
67 changes: 67 additions & 0 deletions bin/ncp/CONFIG/nc-previews-auto.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/bin/bash

# Periodically generate previews for the gallery
#
# Copyleft 2019 by Timo Stiefel and Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
# GPL licensed (see end of file) * Use at your own risk!
#

isactive()
{
[[ -f "/etc/cron.d/nc-previews-auto" ]]
}

configure()
{
[[ "$ACTIVE" != "yes" ]] && {
rm -f /etc/cron.d/nc-previews-auto
service cron restart
echo "Automatic preview generation disabled"
return 0
}

grep -qP "^\d+$" <<<"$RUNTIME" || { echo "Invalid RUNTIME value $RUNTIME"; return 1; }
RUNTIME=$((RUNTIME*60))

echo "0 2 * * * root /usr/local/bin/nc-previews" > /etc/cron.d/ncp-previews-auto
chmod 644 /etc/cron.d/ncp-previews-auto

cat > /usr/local/bin/nc-previews <<EOF
#!/bin/bash
echo -e "\n[ nc-previews-auto ]" >> /var/log/ncp.log
ionice -c3 nice -n20 ncc preview:pre-generate -n -vvv 2>&1 >>/var/log/ncp.log &
PID=\$!
[[ "$RUNTIME" != 0 ]] && {
for i in \$(seq 1 1 $RUNTIME); do
sleep 1
kill -0 "\$PID" &>/dev/null || break
done
pkill -f preview:pre-generate
}
wait "\$PID"
EOF
chmod +x /usr/local/bin/nc-previews

service cron restart
echo "Automatic preview generation enabled"
return 0
}

install() { :; }

# License
#
# This script is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this script; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA 02111-1307 USA
12 changes: 10 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@

[v1.9.5](https://github.com/nextcloud/nextcloudpi/commit/bf794ec) (2019-03-09) nc-init: previews settings
[v1.10.0](https://github.com/nextcloud/nextcloudpi/commit/b00c5f1) (2019-03-13) add nc-previews-auto

[v1.9.4](https://github.com/nextcloud/nextcloudpi/commit/c40c430) (2019-03-09) unattended upgrades: update labels
[v1.9.8 ](https://github.com/nextcloud/nextcloudpi/commit/d7bbe25) (2019-03-13) nc-scan: improvements

[v1.9.7 ](https://github.com/nextcloud/nextcloudpi/commit/e03b095) (2019-03-13) nc-previews: improvements

[v1.9.6 ](https://github.com/nextcloud/nextcloudpi/commit/ccb6fc1) (2019-03-13) nc-scan-auto: improvements

[v1.9.5 ](https://github.com/nextcloud/nextcloudpi/commit/89cc042) (2019-03-09) nc-init: previews settings

[v1.9.4 ](https://github.com/nextcloud/nextcloudpi/commit/0c95243) (2019-03-09) unattended upgrades: update labels

[v1.9.3 ](https://github.com/nextcloud/nextcloudpi/commit/f5ba0b1) (2019-03-09) wizard: fix headers

Expand Down
22 changes: 22 additions & 0 deletions etc/ncp-config.d/nc-previews-auto.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"id": "nc-previews-auto",
"name": "Nc-previews-auto",
"title": "nc-previews-auto",
"description": "Periodically generate previews for the gallery",
"info": "This will make browsing the gallery much more smooth.\nFor big collections, this can take a LONG time depending on your hardware.\nYou can specify a nightly duration in minutes, or 0",
"infotitle": "",
"params": [
{
"id": "ACTIVE",
"name": "Active",
"value": "no",
"type": "bool"
},
{
"id": "RUNTIME",
"name": "Run time",
"value": "0",
"suggest": "0"
}
]
}

0 comments on commit 06073ed

Please sign in to comment.