/usr/share/plowshare/modules/bayimg.sh is in plowshare-modules 0~git20160124.8a8190d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Plowshare bayimg.com module
# Copyright (c) 2013 Plowshare team
#
# This file is part of Plowshare.
#
# Plowshare 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 3 of the License, or
# (at your option) any later version.
#
# Plowshare 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 Plowshare. If not, see <http://www.gnu.org/licenses/>.
MODULE_BAYIMG_REGEXP_URL='https\?://\(www\.\)\?bayimg\.com/'
MODULE_BAYIMG_DOWNLOAD_OPTIONS=""
MODULE_BAYIMG_DOWNLOAD_RESUME=yes
MODULE_BAYIMG_DOWNLOAD_FINAL_LINK_NEEDS_COOKIE=no
MODULE_BAYIMG_DOWNLOAD_SUCCESSIVE_INTERVAL=
MODULE_BAYIMG_UPLOAD_OPTIONS="
ADMIN_CODE,,admin-code,s=ADMIN_CODE,Admin code (used for file deletion)
TAGS,,tags,l=LIST,Provide list of tags (comma separated)"
MODULE_BAYIMG_UPLOAD_REMOTE_SUPPORT=no
MODULE_BAYIMG_DELETE_OPTIONS="
LINK_PASSWORD,p,link-password,S=PASSWORD,Admin password (mandatory)"
MODULE_BAYIMG_PROBE_OPTIONS=""
# Output a bayimg.com file download URL
# $1: cookie file (unused here)
# $2: bayimg url
# stdout: real file download link
bayimg_download() {
local -r URL=$2
local PAGE FILE_URL FILE_NAME
PAGE=$(curl -L "$URL") || return
if match '<title>404 . Not Found</title>' "$PAGE"; then
return $ERR_LINK_DEAD
fi
FILE_URL=$(parse_attr 'toggleResize(' src <<< "$PAGE") || return
# Filename is not always displayed
FILE_NAME=$(parse_quiet '>Filename:' '<p>Filename:[[:space:]]\([^<]\+\)' <<< "$PAGE")
echo "http:$FILE_URL"
test -z "$FILE_NAME" || echo "$FILE_NAME"
}
# Upload a file to bayimg.com
# $1: cookie file (unused here)
# $2: input file (with full path)
# $3: remote filename
# stdout: download link + admin code
bayimg_upload() {
local -r FILE=$2
local -r DESTFILE=$3
local PAGE FILE_URL
if [ -n "$ADMIN_CODE" ]; then
# No known restrictions (length limitation or forbidden characters)
:
else
ADMIN_CODE=$(random a 8)
fi
PAGE=$(curl_with_log -F "tags=${TAGS[*]}" \
-F "code=$ADMIN_CODE" \
-F "file=@$FILE;filename=$DESTFILE" \
'http://bayimg.com/upload') || return
FILE_URL=$(parse_attr 'image-setting' href <<< "$PAGE") || return
echo "http:$FILE_URL"
echo
echo "$ADMIN_CODE"
}
# Delete a file on bayimg (requires an admin code)
# $1: cookie file (unused here)
# $2: delete link
bayimg_delete() {
local -r URL=$2
local PAGE REDIR
if [ -z "$LINK_PASSWORD" ]; then
LINK_PASSWORD=$(prompt_for_password) || return
fi
PAGE=$(curl -i "$URL" -d "code=$LINK_PASSWORD") || return
if match '<strong>REMOVAL CODE</strong>' "$PAGE"; then
return $ERR_LINK_PASSWORD_REQUIRED
fi
REDIR=$(grep_http_header_location_quiet <<< "$PAGE")
if [ "$REDIR" = '/' ]; then
return 0
fi
return $ERR_LINK_DEAD
}
# Probe a download URL
# $1: cookie file (unused here)
# $2: bayfile url
# $3: requested capability list
# stdout: 1 capability per line
bayimg_probe() {
local -r URL=$2
local -r REQ_IN=$3
local PAGE REQ_OUT
PAGE=$(curl -L "$URL") || return
if match '<title>404 . Not Found</title>' "$PAGE"; then
return $ERR_LINK_DEAD
fi
REQ_OUT=c
if [[ $REQ_IN = *f* ]]; then
parse '>Filename:' '<p>Filename:[[:space:]]\([^<]\+\)' <<< "$PAGE" && \
REQ_OUT="${REQ_OUT}f"
fi
echo $REQ_OUT
}
|