/usr/share/plowshare/modules/filefactory.sh is in plowshare-modules 0~git20171112.e94a905-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 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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | # Plowshare filefactory.com module
# Copyright (c) 2013-2016 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_FILEFACTORY_REGEXP_URL='http://\(www\.\)\?filefactory\.com/'
MODULE_FILEFACTORY_DOWNLOAD_OPTIONS="
AUTH,a,auth,a=USER:PASSWORD,User account
LINK_PASSWORD,p,link-password,S=PASSWORD,Used in password-protected files"
MODULE_FILEFACTORY_DOWNLOAD_RESUME=no
MODULE_FILEFACTORY_DOWNLOAD_FINAL_LINK_NEEDS_COOKIE=no
MODULE_FILEFACTORY_DOWNLOAD_SUCCESSIVE_INTERVAL=
MODULE_FILEFACTORY_UPLOAD_OPTIONS="
AUTH,a,auth,a=USER:PASSWORD,User account
LINK_PASSWORD,p,link-password,S=PASSWORD,Protect a link with a password
FOLDER,,folder,s=FOLDER,Folder to upload files into
ASYNC,,async,,Asynchronous remote upload (only start upload, don't wait for link)
TOEMAIL,,email-to,e=EMAIL,<To> field for notification email"
MODULE_FILEFACTORY_UPLOAD_REMOTE_SUPPORT=yes
MODULE_FILEFACTORY_LIST_OPTIONS=""
MODULE_FILEFACTORY_LIST_HAS_SUBFOLDERS=no
MODULE_FILEFACTORY_PROBE_OPTIONS=""
# Static function. Proceed with login.
# $1: authentication
# $2: cookie file
# $3: base URL
filefactory_login() {
local -r AUTH=$1
local -r COOKIE_FILE=$2
local -r BASE_URL=$3
local LOGIN_DATA LOGIN_RESULT LOCATION
LOGIN_DATA='loginEmail=$USER&loginPassword=$PASSWORD&Submit=Sign In'
LOGIN_RESULT=$(post_login "$AUTH" "$COOKIE_FILE" "$LOGIN_DATA" \
"$BASE_URL/member/signin.php" -i) || return
LOCATION=$(grep_http_header_location_quiet <<< "$LOGIN_RESULT")
if [ "$LOCATION" != '/account/' ]; then
return $ERR_LOGIN_FAILED
fi
}
# Output a filefactory.com file download URL
# $1: cookie file
# $2: filefactory.com url
# stdout: real file download link
filefactory_download() {
local -r COOKIE_FILE=$1
local -r URL=$(replace '://filefactory' '://www.filefactory' <<< "$2")
local -r BASE_URL='http://www.filefactory.com'
local PAGE LOCATION WAIT_TIME FILE_URL
if [ -n "$AUTH" ]; then
filefactory_login "$AUTH" "$COOKIE_FILE" "$BASE_URL" || return
fi
PAGE=$(curl -i -c "$COOKIE_FILE" -b "$COOKIE_FILE" "$URL") || return
LOCATION=$(grep_http_header_location_quiet <<< "$PAGE")
if [ -n "$LOCATION" ]; then
if match '/error\.php?code=25[14]' "$LOCATION"; then
return $ERR_LINK_DEAD
elif match '/error\.php?code=258' "$LOCATION"; then
return $ERR_LINK_NEED_PERMISSIONS
elif match '/error\.php?code=' "$LOCATION"; then
log_error "Remote error code: '${LOCATION:16}'"
return $ERR_FATAL
elif match '/preview/' "$LOCATION"; then
PAGE=$(curl -L -c "$COOKIE_FILE" -b "$COOKIE_FILE" "$URL") || return
fi
fi
if match 'Please enter the password' "$PAGE"; then
log_debug 'File is password protected'
if [ -z "$LINK_PASSWORD" ]; then
LINK_PASSWORD=$(prompt_for_password) || return
PAGE=$(curl -b "$COOKIE_FILE" -L \
-d "password=$LINK_PASSWORD" \
-d 'Submit=Continue' \
"$URL") || return
if match 'The Password entered was incorrect' "$PAGE"; then
return $ERR_LINK_PASSWORD_REQUIRED
fi
fi
fi
# If this an image ?
if match '[[:space:]]id=.image_main.[[:space:]]' "$PAGE"; then
FILE_URL=$(parse_attr 'Download Image' 'href' <<< "$PAGE") || return
else
WAIT_TIME=$(parse_attr 'data-delay' <<< "$PAGE") || return
wait $WAIT_TIME || return
FILE_URL=$(parse_attr 'data-href' <<< "$PAGE") || return
fi
# Redirect to /?code=275 on simultaneous download for non-premium, 1hr download limit
echo $FILE_URL
}
# Upload a file to filefactory.com
# $1: cookie file
# $2: input file (with full path)
# $3: remote filename
# stdout: download link
filefactory_upload() {
local -r COOKIE_FILE=$1
local -r FILE=$2
local -r DEST_FILE=$3
local -r BASE_URL='http://www.filefactory.com'
local -r MAX_SIZE=2097152000 # 2000 MiB
local PAGE AUTH_COOKIE FOLDERS FOLDER_HASH FILE_CODE
[ -n "$AUTH" ] || return $ERR_LINK_NEED_PERMISSIONS
if ! match_remote_url "$FILE"; then
local FILE_SIZE=$(get_filesize "$FILE")
if [ "$FILE_SIZE" -gt "$MAX_SIZE" ]; then
log_debug "File is bigger than $MAX_SIZE"
return $ERR_SIZE_LIMIT_EXCEEDED
fi
fi
filefactory_login "$AUTH" "$COOKIE_FILE" "$BASE_URL" || return
AUTH_COOKIE=$(parse_cookie 'auth' < "$COOKIE_FILE") || return
AUTH_COOKIE=$(uri_decode <<< "$AUTH_COOKIE") || return
if [ -n "$FOLDER" ]; then
log_debug 'Getting folder data...'
PAGE=$(curl -b "$COOKIE_FILE" -G \
-d 'm=getFolders' \
"$BASE_URL/manager2/get.php") || return
FOLDERS=$(parse_json 'title' 'split' <<< "$PAGE") || return
FOLDERS=$(delete_first_line <<< "$FOLDERS")
if ! match "^$FOLDER$" "$FOLDERS"; then
log_debug "Creating folder '$FOLDER'..."
PAGE=$(curl -b "$COOKIE_FILE" \
-H 'X-Requested-With: XMLHttpRequest' \
-d 'func=createFolder' \
-d "name=$FOLDER" \
"$BASE_URL/upload/ajax.php") || return
if ! match 'Your folder was created successfully' "$PAGE"; then
log_error 'Could not create folder'
else
FOLDER_HASH=$(parse_json 'hash' <<< "$PAGE") || return
fi
else
PAGE=$(replace ',"icon"' $',"icon"\n' <<< "$PAGE")
FOLDER_HASH=$(parse "\"title\":\"$FOLDER\"" '"id":"\([^"]\+\)' <<< "$PAGE") || return
fi
log_debug "Folder hash: '$FOLDER_HASH'"
fi
# Upload remote file
if match_remote_url "$FILE"; then
local TRY FILE_STATE LINK_DL
if ! match '^https\?://' "$FILE" && ! match '^ftp://' "$FILE"; then
log_error 'Unsupported protocol for remote upload.'
return $ERR_BAD_COMMAND_LINE
fi
if [ -z "$FOLDER" ]; then
FOLDER_HASH="0"
fi
PAGE=$(curl -b "$COOKIE_FILE" \
-d 'remoteUsername=' \
-d 'remotePassword=' \
-d "folder_name=$FOLDER_HASH" \
-d "remoteList=$FILE" \
-d 'Submit=Upload Files' \
"$BASE_URL/upload/remote.php") || return
if ! match 'The submitted link was successfully added to the remote queue.' "$PAGE"; then
log_error 'Could not set remote upload.'
return $ERR_FATAL
fi
# If this is an async upload, we are done
if [ -n "$ASYNC" ]; then
log_error 'Once remote upload completed, check your account for link.'
return $ERR_ASYNC_REQUEST
fi
TRY=1
while [ "$FILE_STATE" != 'Complete' ]; do
PAGE=$(curl -b "$COOKIE_FILE" \
-H 'X-Requested-With: XMLHttpRequest' \
"$BASE_URL/upload/status/modal.php?type=remote") || return
FILE_STATE=$(parse_attr 'data-sort-value' <<< "$PAGE") || return
[ "$FILE_STATE" = 'Complete' ] && break
if [ "$FILE_STATE" != 'Saving' ] && \
[ "$FILE_STATE" != 'Downloading' ] && \
[ "$FILE_STATE" != 'Pending' ]; then
[ "$FILE_STATE" = 'Failed' ] && log_error 'Upload failed.'
[ "$FILE_STATE" != 'Failed' ] && log_error "Upload failed. Unknown state: '$FILE_STATE'."
return $ERR_FATAL
fi
log_debug "Wait for server to download the file... [$((TRY++))]"
wait 15 || return
done
LINK_DL=$(parse_attr 'Download</a>' 'href' <<< "$PAGE") || return
FILE_CODE=$(parse . '^.*/\([^/]\+\)/$' <<< "$LINK_DL") || return
# Do we need to rename the file?
if [ "$DEST_FILE" != 'dummy' ]; then
log_debug 'Renaming file...'
PAGE=$(curl -b "$COOKIE_FILE" \
-d 'm=editFile' \
-d "h=$FILE_CODE" \
-d "filename=$DEST_FILE" \
-d 'description=' \
"$BASE_URL/manager2/set.php") || return
if [ "$PAGE" != '{"status":"ok"}' ]; then
log_error 'Could not rename file.'
fi
fi
# Upload local file
else
PAGE=$(curl_with_log \
-F "cookie=$AUTH_COOKIE" \
-F "Filedata=@$FILE;filename=$DEST_FILE" \
'http://upload.filefactory.com/upload-beta.php') || return
if ! match '^[[:alnum:]]\+$' "$PAGE"; then
log_error 'Upload failed.'
return $ERR_FATAL
else
FILE_CODE="$PAGE"
fi
if [ -n "$FOLDER" ]; then
log_debug "Moving file to folder '$FOLDER'..."
PAGE=$(curl -b "$COOKIE_FILE" \
-H 'X-Requested-With: XMLHttpRequest' \
-d 'func=moveFiles' \
-d "folder=$FOLDER_HASH" \
-d "files=$FILE_CODE" \
"$BASE_URL/upload/ajax.php") || return
if ! match 'The selected files were moved successfully' "$PAGE"; then
log_error 'Could not move file into folder.'
fi
fi
fi
if [ -n "$LINK_PASSWORD" ]; then
log_debug 'Setting download password...'
PAGE=$(curl -b "$COOKIE_FILE" \
-d "m=setPassword" \
-d "p=$LINK_PASSWORD" \
-d "fi=$FILE_CODE" \
"$BASE_URL/manager2/set.php") || return
if [ "$PAGE" != '{"status":"ok","password":"yes"}' ]; then
log_error 'Could not set password.'
fi
fi
if [ -n "$TOEMAIL" ]; then
log_debug 'Sending link...'
PAGE=$(curl -b "$COOKIE_FILE" \
-d 'm=emailFile' \
-d "h=$FILE_CODE" \
-d "r=$TOEMAIL" \
-d 'message=' \
"$BASE_URL/manager2/set.php") || return
if [ "$PAGE" != '{"status":"ok"}' ]; then
log_error 'Could not send link.'
fi
fi
echo "$BASE_URL/file/$FILE_CODE/"
}
# Probe a download URL
# $1: cookie file (unused here)
# $2: filefactory.com url
# $3: requested capability list
# stdout: 1 capability per line
filefactory_probe() {
local -r URL=$(replace '://filefactory' '://www.filefactory' <<< "$2")
local -r REQ_IN=$3
local PAGE LOCATION FILE_SIZE REQ_OUT
PAGE=$(curl -i "$URL") || return
LOCATION=$(grep_http_header_location_quiet <<< "$PAGE")
REQ_OUT=c
if match '/error.php?code=' "$LOCATION"; then
local CODE=${LOCATION:16}
if [ "$CODE" = '251' ]; then
return $ERR_LINK_DEAD
elif [ "$CODE" = '254' ]; then
return $ERR_LINK_DEAD
elif [ "$CODE" = '258' ]; then
echo $REQ_OUT
return $ERR_LINK_NEED_PERMISSIONS
fi
log_error "Remote error code: '${LOCATION:16}'"
return $ERR_FATAL
fi
# All data is hidden for password protected files
if match 'Please enter the password' "$PAGE"; then
return $REQ_OUT
fi
if [[ $REQ_IN = *f* ]]; then
parse 'file_name' \
'<h2>\([^<]\+\)' 1 <<< "$PAGE" &&
REQ_OUT="${REQ_OUT}f"
fi
if [[ $REQ_IN = *s* ]]; then
FILE_SIZE=$(parse 'file_info' \
'<div id="file_info">\(.*\) uploaded' <<< "$PAGE") && \
translate_size "$FILE_SIZE" && REQ_OUT="${REQ_OUT}s"
fi
echo $REQ_OUT
}
# List a filefactory.com web folder URL
# $1: folder URL
# $2: recurse subfolders (null string means not selected)
# stdout: list of links and file names (alternating)
filefactory_list() {
local -r URL=$(replace '://filefactory.com' '://www.filefactory' <<< "$1")
local -r REC=$2
local PAGE LOCATION LINKS NAMES
PAGE=$(curl -i -G \
-d 'export=1' \
"$URL") || return
LOCATION=$(grep_http_header_location_quiet <<< "$PAGE")
if match '/error.php?code=300' "$LOCATION"; then
return $ERR_LINK_DEAD
elif match '/error.php?code=' "$LOCATION"; then
log_error "Remote error code: '${LOCATION:16}'"
return $ERR_FATAL
fi
NAMES=$(parse_all_quiet . '^\"\([^"]\+\)' <<< "$PAGE")
LINKS=$(parse_all_quiet . '[^"],"\([^"]\+\)' <<< "$PAGE")
list_submit "$LINKS" "$NAMES"
}
|