-
Notifications
You must be signed in to change notification settings - Fork 78
/
mediafire.sh
696 lines (571 loc) · 23 KB
/
mediafire.sh
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
# Plowshare mediafire.com module
# Copyright (c) 2011-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_MEDIAFIRE_REGEXP_URL='https\?://\(www\.\)\?mediafire\.com/'
MODULE_MEDIAFIRE_DOWNLOAD_OPTIONS="
LINK_PASSWORD,p,link-password,S=PASSWORD,Used in password-protected files"
MODULE_MEDIAFIRE_DOWNLOAD_RESUME=yes
MODULE_MEDIAFIRE_DOWNLOAD_FINAL_LINK_NEEDS_COOKIE=no
MODULE_MEDIAFIRE_DOWNLOAD_SUCCESSIVE_INTERVAL=
MODULE_MEDIAFIRE_UPLOAD_OPTIONS="
ASYNC,,async,,Asynchronous remote upload (only start upload, don't wait for link)
AUTH_FREE,b,auth-free,a=EMAIL:PASSWORD,Free account (mandatory)
DESCRIPTION,d,description,S=DESCRIPTION,Set file description
FOLDER,,folder,s=FOLDER,Folder to upload files into. Leaf name, no hierarchy.
LINK_PASSWORD,p,link-password,S=PASSWORD,Protect a link with a password
PRIVATE_FILE,,private,,Do not show file in folder view
UNIQUE_FILE,,unique,,Do not allow duplicated filename"
MODULE_MEDIAFIRE_UPLOAD_REMOTE_SUPPORT=yes
MODULE_MEDIAFIRE_LIST_OPTIONS=""
MODULE_MEDIAFIRE_LIST_HAS_SUBFOLDERS=yes
MODULE_MEDIAFIRE_PROBE_OPTIONS=""
# Static function. Proceed with login
# $1: authentication
# $2: cookie file
# $3: base URL
mediafire_login() {
local -r AUTH_FREE=$1
local -r COOKIE_FILE=$2
local -r BASE_URL=$3
local -r ENC_BASE_URL=$(uri_encode_strict <<< "$BASE_URL/")
local LOGIN_DATA PAGE CODE NAME
# Make sure we have "ukey" cookie (mandatory)
curl -c "$COOKIE_FILE" -o /dev/null "$BASE_URL"
# Notes: - "login_remember=on" not required
# - force SSLv3 to avoid problems with curl using OpenSSL/1.0.1
LOGIN_DATA='login_email=$USER&login_pass=$PASSWORD&submit_login=Login+to+MediaFire'
PAGE=$(post_login "$AUTH_FREE" "$COOKIE_FILE" "$LOGIN_DATA" \
"${BASE_URL/#http/https}/dynamic/login.php?popup=1" \
-b "$COOKIE_FILE" --sslv3 --referer "$BASE_URL") || return
# Note: Cookies "user" and "session" get set on successful login, "skey" is changed"
CODE=$(echo "$PAGE" | parse 'var et' 'var et= \(-\?[[:digit:]]\+\);') || return
NAME=$(echo "$PAGE" | parse 'var fp' "var fp='\([^']\+\)';") || return
# Check for errors
# Note: All error codes are explained in page returned by server.
if [ $CODE -ne 15 ]; then
log_debug "Remote error: $ERR"
return $ERR_LOGIN_FAILED
fi
log_debug "Successfully logged in as member '$NAME'"
}
# Extract file/folder ID from download link
# $1: Mediafire download URL
# - http://www.mediafire.com/?xyz
# - http://www.mediafire.com/download.php?xyz
# - http://www.mediafire.com/download/xyz/filename...
# $2: probe mode if non empty argument (quiet parsing)
# stdout: file/folder ID
mediafire_extract_id() {
local -r URL=$1
local -r PROBE=$2
local ID
case "$URL" in
*/download/*)
ID=$(parse . '/download/\([[:alnum:]]\+\)' <<< "$URL") || return
;;
*/file/*)
ID=$(parse . '/file/\([[:alnum:]]\+\)' <<< "$URL") || return
;;
*/folder/*)
ID=$(parse . '/folder/\([[:alnum:]]\+\)' <<< "$URL") || return
;;
*\?*)
ID=$(parse . '?\([[:alnum:]]\+\)$' <<< "$URL") || return
;;
esac
if [ -z "$ID" -a -z "$PROBE" ]; then
log_error 'Could not parse file/folder ID.'
return $ERR_FATAL
fi
log_debug "File/Folder ID: '$ID'"
echo "$ID"
}
# Check whether a given ID is a file ID (and not a folder ID)
# $1: Mediafire file/folder ID
# $?: return 0 if ID is a file ID, 1 if it is a folder ID
mediafire_is_file_id() {
# Folder IDs have 13 digits, file IDs vary in length (11, 15)
[ ${#1} -ne 13 ]
}
# Retrieve current session key
# $1: cookie file (logged into account)
# $2: base URL
# stdout: session key
mediafire_extract_session_key() {
local PAGE KEY
# Though we cannot login via the official API (requires app ID) we can
# extract the session ID and use most of the API with that :-)
PAGE=$(curl -b "$1" "$2/myfiles.php") || return
KEY=$(echo "$PAGE" | \
parse 'tH.YQ' 'tH.YQ("\([[:xdigit:]]\+\)",') || return
log_debug "Session key: '$KEY'"
echo "$KEY"
}
# Check if specified folder name is valid.
# When multiple folders wear the same name, first one is taken.
# $1: session key
# $2: base URL
# $3: (leaf) folder name. No hierarchy.
# stdout: folder key
mediafire_check_folder() {
local -r SESSION_KEY=$1
local -r BASE_URL=$2
local -r NAME=$3
local -a FOLDER_NAMES # all folder names encountered
local -a FOLDER_KEYS # all folder keys encountered
local XML IDX LINE NAMES KEYS
# Get root folder to initialize folder traversal
XML=$(curl -d "session_token=$SESSION_KEY" \
"$BASE_URL/api/folder/get_info.php") || return
FOLDER_KEYS[0]=$(echo "$XML" | parse_tag . 'folderkey') || return
FOLDER_NAMES[0]=$(echo "$XML" | parse_tag . 'name') || return
IDX=0
while [ $IDX -lt ${#FOLDER_NAMES[@]} ]; do
# Check whether we found the correct folder
if [ "${FOLDER_NAMES[$IDX]}" = "$NAME" ]; then
log_debug "Folder found! Folder key: '${FOLDER_KEYS[$IDX]}'"
echo "${FOLDER_KEYS[$IDX]}"
return 0
fi
# Get all sub folders
XML=$(curl -d "session_token=$SESSION_KEY" -d "folder_key=${FOLDER_KEYS[$IDX]}" -d 'content_type=folders' \
"$BASE_URL/api/folder/get_content.php" | break_html_lines) || return
KEYS=$(echo "$XML" | parse_all_tag_quiet 'folderkey')
NAMES=$(echo "$XML" | parse_all_tag_quiet 'name')
# Append names/keys (if any) to respective array
if [ -n "$KEYS" ]; then
while read -r LINE; do
FOLDER_NAMES[${#FOLDER_NAMES[@]}]=$LINE
done <<< "$NAMES"
while read -r LINE; do
FOLDER_KEYS[${#FOLDER_KEYS[@]}]=$LINE
done <<< "$KEYS"
fi
(( ++IDX ))
done
log_error 'Invalid folder, choose from:' ${FOLDER_NAMES[*]}
return $ERR_BAD_COMMAND_LINE
}
mediafire_get_ofuscated_link() {
local VAR=$1
local I N C R
I=0
N=${#VAR}
while (( I < N )); do
C=$((16#${VAR:$I:2} + 0x18))
R="$R"$(printf \\$(($C/64*100+$C%64/8*10+$C%8)))
(( I += 2 ))
done
echo "$R"
}
# Output a mediafire file download URL
# $1: cookie file
# $2: mediafire.com url
# stdout: real file download link
mediafire_download() {
local -r COOKIE_FILE=$1
local -r BASE_URL='https://www.mediafire.com'
local FILE_ID URL PAGE JSON JS_VAR
if [ -n "$AUTH_FREE" ]; then
mediafire_login "$AUTH_FREE" "$COOKIE_FILE" "$BASE_URL" || return
fi
FILE_ID=$(mediafire_extract_id "$2") || return
if ! mediafire_is_file_id "$FILE_ID"; then
log_error 'This is a folder link. Please use plowlist!'
return $ERR_FATAL
fi
# Only get site headers first to capture direct download links
URL=$(curl --head "$BASE_URL/?$FILE_ID" | grep_http_header_location_quiet) || return
case "$URL" in
# no redirect, normal download
'')
URL="$BASE_URL/?$FILE_ID"
;;
/download/*)
URL="$BASE_URL$URL"
;;
/file/$FILE_ID/*)
URL="$BASE_URL$URL"
;;
http://*)
log_debug 'Direct download'
echo "$URL"
return 0
;;
*errno=999)
return $ERR_LINK_NEED_PERMISSIONS
;;
*errno=320\&origin=download)
return $ERR_LINK_DEAD
;;
*errno=320|*errno=378)
return $ERR_LINK_DEAD
;;
*errno=*)
log_error "Unexpected remote error: ${URL#*errno=}"
return $ERR_FATAL
esac
PAGE=$(curl -b "$COOKIE_FILE" -c "$COOKIE_FILE" "$URL" | break_html_lines) || return
# <h3 class="error_msg_title">Invalid or Deleted File.</h3>
match 'Invalid or Deleted File' "$PAGE" && return $ERR_LINK_DEAD
# handle captcha (reCaptcha or SolveMedia) if there is one
if match '<form[^>]*form_captcha' "$PAGE"; then
local FORM_CAPTCHA PUBKEY CHALLENGE ID RESP CAPTCHA_DATA
FORM_CAPTCHA=$(grep_form_by_name "$PAGE" 'form_captcha') || return
# We cannot resolve a graphic version of reCaptcha, so instead of
# resolving it, just force to resolve solvemedia. It simply works.
if match 'class="g-recaptcha"' "$FORM_CAPTCHA"; then
log_debug 'Graphic reCaptcha found'
log_debug 'Instead of resolving it, just force to resolve Solve Media CAPTCHA'
elif match 'api\.solvemedia' "$FORM_CAPTCHA"; then
log_debug 'Solve Media CAPTCHA found'
else
log_error 'Unexpected content/captcha type. Site updated?'
return $ERR_FATAL
fi
PUBKEY='Z94dMnWequbvKmy-HchLrZJ3-.qB6AJ1'
RESP=$(solvemedia_captcha_process $PUBKEY) || return
{ read CHALLENGE; read ID; } <<< "$RESP"
CAPTCHA_DATA="--data-urlencode adcopy_challenge=$CHALLENGE -d adcopy_response=manual_challenge"
log_debug "Captcha data: $CAPTCHA_DATA"
PAGE=$(curl --location -b "$COOKIE_FILE" --referer "$URL" \
$CAPTCHA_DATA "$BASE_URL/?$FILE_ID") || return
# After resolving captcha we are redirected to an error page, so once again load a proper page.
PAGE=$(curl -b "$COOKIE_FILE" "$URL" | break_html_lines) || return
# Your entry was incorrect, please try again!
if match '<form[^>]*form_captcha' "$PAGE"; then
captcha_nack $ID
log_error 'Wrong captcha'
return $ERR_CAPTCHA
fi
captcha_ack $ID
log_debug 'Correct captcha'
fi
# Check for password protected link
if match 'name="downloadp"' "$PAGE"; then
log_debug 'File is password protected'
if [ -z "$LINK_PASSWORD" ]; then
LINK_PASSWORD=$(prompt_for_password) || return
fi
FORM_HTML=$(grep_form_by_name "$PAGE" 'form_password')
SEC=$(echo "$FORM_HTML" | parse_form_input_by_name 'security')
PAGE=$(curl -L --post301 -b "$COOKIE_FILE" \
-d "downloadp=$LINK_PASSWORD" \
-d "security=$SEC" \
"$BASE_URL/?$FILE_ID" | break_html_lines) || return
match 'name="downloadp"' "$PAGE" && return $ERR_LINK_PASSWORD_REQUIRED
fi
if match "The page you attempted to load is not intended to be accessed directly." "${PAGE}"; then
log_debug "Direct Access Denied"
PAGE=$(curl -b "$COOKIE_FILE" "$URL" | break_html_lines) || return
fi
JS_VAR=$(echo "$PAGE" | parse 'function[[:space:]]*_' '"\(.\+\)";' 1)
# extract + output download link + file name
mediafire_get_ofuscated_link "$JS_VAR" | parse_attr href || return
if ! parse_attr 'og:title' 'content' <<< "$PAGE"; then
parse_tag 'title' <<< "$PAGE" || return
fi
}
# Static function. Proceed with login using official API
# $1: authentication
# $2: base url
# stdout: account type ("free" or "premium") on success
mediafire_api_get_session_token() {
local -r AUTH=$1
local -r BASE_URL=$2
local EMAIL PASSWORD HASH JSON RES ERR
# Plowshare App ID & API key
local -r APP_ID=36434
local -r KEY='mqio689reumyxs7p2xjd18asj388lle2h6hpx6m5'
split_auth "$AUTH" EMAIL PASSWORD || return
HASH=$(sha1 "$EMAIL$PASSWORD$APP_ID$KEY") || return
JSON=$(curl -d "email=$EMAIL" \
-d "password=$(echo "$PASSWORD" | uri_encode_strict)" \
-d "application_id=$APP_ID" \
-d "signature=$HASH" \
-d 'version=1' -d 'response_format=json' \
"$BASE_URL/api/user/get_session_token.php") || return
RES=$(echo "$JSON" | parse_json 'result' 'split') || return
if [ "$RES" != 'Success' ]; then
ERR=$(echo "$JSON" | parse_json 'error' 'split') || return
log_error "Remote error: '$ERR'"
return $ERR_LOGIN_FAILED
fi
echo "$JSON" | parse_json 'session_token' 'split' || return
}
# Upload a file to mediafire using official API.
# https://www.mediafire.com/developers/upload.php
# $1: cookie file (unused here)
# $2: input file (with full path)
# $3: remote filename
# stdout: mediafire.com download link
mediafire_upload() {
local -r COOKIE_FILE=$1
local -r FILE=$2
local -r DEST_FILE=$3
local -r BASE_URL='https://www.mediafire.com'
local SESSION_TOKEN JSON RES KEY_ID UPLOAD_KEY QUICK_KEY FOLDER_KEY
# Sanity checks
[ -n "$AUTH_FREE" ] || return $ERR_LINK_NEED_PERMISSIONS
if [ -n "$ASYNC" ] && ! match_remote_url "$FILE"; then
log_error 'Cannot upload local files asynchronously.'
return $ERR_BAD_COMMAND_LINE
fi
if [ -n "$ASYNC" -a \( -n "$DESCRIPTION" -o -n "$LINK_PASSWORD" -o \
-n "$PRIVATE_FILE" \) ] ; then
log_error 'Advanced options not available for asynchronously uploaded files.'
return $ERR_BAD_COMMAND_LINE
fi
# FIXME
if [ -z "$ASYNC" ] && match_remote_url "$FILE"; then
log_error 'Synchronous remote upload not implemented.'
return $ERR_BAD_COMMAND_LINE
fi
SESSION_TOKEN=$(mediafire_api_get_session_token "$AUTH_FREE" "$BASE_URL") || return
log_debug "Session Token: '$SESSION_TOKEN'"
# API bug
if [ "${#DEST_FILE}" -lt 3 ]; then
log_error 'Filenames less than 3 characters cannot be uploaded. Mediafire API bug? This is not a plowshare bug!'
fi
if [ -n "$FOLDER" ]; then
FOLDER_KEY=$(mediafire_check_folder "$SESSION_TOKEN" "$BASE_URL" "$FOLDER") || return
fi
# Check for duplicate name
JSON=$(curl --get -d "session_token=$SESSION_TOKEN" -d "filename=$DEST_FILE" \
-d 'response_format=json' \
-d 'action_on_duplicate=keep' \
${FOLDER:+-d "upload_folder_key=$FOLDER_KEY"} \
"$BASE_URL/api/upload/pre_upload.php") || return
RES=$(parse_json result <<<"$JSON") || return
if [ "$RES" != 'Success' ]; then
local NUM MSG
NUM=$(parse_json_quiet error <<<"$JSON")
MSG=$(parse_json_quiet message <<<"$JSON")
log_error "Unexpected remote error (pre_upload): $NUM, '$MSG'"
return $ERR_FATAL
fi
# "duplicate_name":"yes","duplicate_quickkey":"2xrys3f97a9t9ce"
# Note: "duplicate_name" is not always returned ???
QUICK_KEY=$(parse_json_quiet 'duplicate_quickkey' <<<"$JSON") || return
if [ -n "$QUICK_KEY" ]; then
if [ -n "$UNIQUE_FILE" ]; then
log_error 'Duplicated filename. Return original quickkey.'
echo "$BASE_URL/?$QUICK_KEY"
return 0
else
log_debug 'a file with the same filename already exists. File will be renamed.'
fi
fi
# "used_storage_size":"10438024","storage_limit":"53687091200","storage_limit_exceeded":"no"
RES=$(parse_json storage_limit_exceeded <<<"$JSON") || return
if [ "$RES" = 'yes' ]; then
log_error 'Storage limit exceeded. Abort.'
return $ERR_SIZE_LIMIT_EXCEEDED
fi
# Start upload
if match_remote_url "$FILE"; then
JSON=$(curl -d "session_token=$SESSION_TOKEN" \
-d "filename=$DESTFILE" \
-d 'response_format=json' \
--data-urlencode "url=$FILE" \
${FOLDER:+"-d folder_key=$FOLDER_KEY"} \
"$BASE_URL/api/upload/add_web_upload.php") || return
KEY_ID='upload_key'
else
local FILE_SIZE
FILE_SIZE=$(get_filesize "$FILE") || return
JSON=$(curl_with_log -F "Filedata=@$FILE;filename=$DESTFILE" \
--header "x-filename: $DEST_FILE" \
--header "x-size: $FILE_SIZE" \
"$BASE_URL/api/upload/upload.php?session_token=$SESSION_TOKEN&action_on_duplicate=keep&response_format=json${FOLDER:+"&uploadkey=$FOLDER_KEY"}") || return
KEY_ID='key'
fi
# Check for errors
RES=$(parse_json result <<<"$JSON") || return
if [ "$RES" != 'Success' ]; then
local NUM MSG
NUM=$(parse_json_quiet error <<<"$JSON")
MSG=$(parse_json_quiet message <<<"$JSON")
log_error "Unexpected remote error (upload): $NUM, '$MSG'"
return $ERR_FATAL
fi
UPLOAD_KEY=$(parse_json "$KEY_ID" <<< "$JSON") || return
log_debug "polling for status update (with key $UPLOAD_KEY)"
QUICK_KEY=''
# Wait for upload to finish
if match_remote_url "$FILE"; then
[ -n "$ASYNC" ] && return $ERR_ASYNC_REQUEST
else
for N in 3 3 2 2 2; do
wait $N seconds || return
JSON=$(curl --get -d "session_token=$SESSION_TOKEN" \
-d 'response_format=json' -d "key=$UPLOAD_KEY" \
"$BASE_URL/api/upload/poll_upload.php") || return
RES=$(parse_json result <<<"$JSON") || return
if [ "$RES" != 'Success' ]; then
log_error "FIXME '$JSON'"
return $ERR_FATAL
fi
# No more requests for this key
RES=$(parse_json status <<<"$JSON") || return
if [ "$RES" = '99' ]; then
QUICK_KEY=$(parse_json quickkey <<<"$JSON") || return
break
fi
done
fi
if [ -z "$QUICK_KEY" ]; then
local MSG ERR
MSG=$(parse_json_quiet description <<<"$JSON")
ERR=$(parse_json_quiet fileerror <<<"$JSON")
log_error "Bad status $RES: '$MSG'"
log_debug "fileerror: '$ERR'"
return $ERR_FATAL
fi
if [ -n "$DESCRIPTION" -o -n "$PRIVATE_FILE" ]; then
JSON=$(curl -d "session_token=$SESSION_TOKEN" \
-d "quick_key=$QUICK_KEY" -d 'response_format=json' \
${DESCRIPTION:+-d "description=$DESCRIPTION"} \
${PRIVATE_FILE:+-d 'privacy=private'} \
"$BASE_URL/api/file/update.php") || return
RES=$(parse_json result <<<"$JSON")
if [ "$RES" != 'Success' ]; then
log_error 'Could not set description/hide file.'
fi
fi
# Note: Making a file private removes its password...
if [ -n "$LINK_PASSWORD" ]; then
JSON=$(curl -d "session_token=$SESSION_TOKEN" \
-d "quick_key=$QUICK_KEY" -d 'response_format=json' \
-d "password=$LINK_PASSWORD" \
"$BASE_URL/api/file/update_password.php") || return
RES=$(parse_json result <<<"$JSON")
if [ "$RES" != 'Success' ]; then
log_error 'Could not set password.'
fi
fi
echo "$BASE_URL/?$QUICK_KEY"
}
# List a mediafire shared file folder URL
# $1: mediafire folder url (http://www.mediafire.com/?sharekey=...)
# $2: recurse subfolders (null string means not selected)
# stdout: list of links
mediafire_list() {
local URL=$1
local REC=$2
local -r BASE_URL='http://www.mediafire.com'
local -r CHUNK_SIZE=100 # default chunk size
local RET=$ERR_LINK_DEAD
local XML FOLDER_KEY ERR NUM_FILES NUM_FOLDERS NUM_CHUNKS CHUNK NAMES LINKS
if [[ $URL = */?sharekey=* ]]; then
local LOCATION
LOCATION=$(curl --head "$URL" | grep_http_header_location) || return
if [[ "$LOCATION" != /* ]]; then
log_error 'This is not a shared folder'
return $ERR_FATAL
fi
FOLDER_KEY=$(mediafire_extract_id "$LOCATION") || return
else
FOLDER_KEY=$(mediafire_extract_id "$URL" 1)
# http://www.mediafire.com/username
if [ -z "$FOLDER_KEY" ]; then
#local PAGE
#PAGE=$(curl -L "$URL") || return
# FIXME: obfuscated js..
log_error 'Sorry, this folder url is not handled yet'
return $ERR_FATAL
fi
fi
if mediafire_is_file_id "$FOLDER_KEY"; then
log_error 'This is a file link. Please use plowdown!'
return $ERR_FATAL
fi
XML=$(curl -d "folder_key=$FOLDER_KEY" \
"$BASE_URL/api/folder/get_info.php") || return
# Check for errors
ERR=$(echo "$XML" | parse_tag_quiet 'message')
if [ -n "$ERR" ]; then
log_error "Remote error: $ERR"
return $ERR_FATAL
fi
# Note: This numbers also includes private files!
NUM_FILES=$(echo "$XML" | parse_tag 'file_count') || return
NUM_FOLDERS=$(echo "$XML" | parse_tag 'folder_count') || return
log_debug "There is/are $NUM_FILES file(s) and $NUM_FOLDERS sub folder(s)"
# Handle files (NUM_CHUNKS = ceil(NUM_FILES / CHUNK_SIZE))
NUM_CHUNKS=$(( (NUM_FILES + CHUNK_SIZE - 1) / CHUNK_SIZE ));
CHUNK=0
while (( ++CHUNK <= NUM_CHUNKS )); do
XML=$(curl -d "folder_key=$FOLDER_KEY" -d 'content_type=files' \
-d "chunk=$CHUNK" "$BASE_URL/api/folder/get_content.php" \
| break_html_lines) || return
NAMES=$(echo "$XML" | parse_all_tag_quiet 'filename')
LINKS=$(echo "$XML" | parse_all_tag_quiet 'quickkey')
list_submit "$LINKS" "$NAMES" "$BASE_URL/?" && RET=0
done
# Handle folders
if [ -n "$REC" ]; then
local LINK
NUM_CHUNKS=$(( (NUM_FOLDERS + CHUNK_SIZE - 1) / CHUNK_SIZE ));
CHUNK=0
while (( ++CHUNK <= NUM_CHUNKS )); do
XML=$(curl -d "folder_key=$FOLDER_KEY" -d 'content_type=folders' \
-d "chunk=$CHUNK" "$BASE_URL/api/folder/get_content.php" \
| break_html_lines) || return
LINKS=$(echo "$XML" | parse_all_tag 'folderkey') || return
for LINK in $LINKS; do
log_debug "Entering sub folder: $LINK"
mediafire_list "$BASE_URL/?$LINK" "$REC" && RET=0
done
done
fi
return $RET
}
# Probe a download URL
# $1: cookie file (unused here)
# $2: Mediafire url
# $3: requested capability list
# stdout: 1 capability per line
mediafire_probe() {
local -r REQ_IN=$3
local -r BASE_URL='http://www.mediafire.com'
local FILE_ID XML REQ_OUT
FILE_ID=$(mediafire_extract_id "$2") || return
if ! mediafire_is_file_id "$FILE_ID"; then
log_error 'This is a folder link. Please use plowlist!'
return $ERR_FATAL
fi
XML=$(curl -d "quick_key=$FILE_ID" "$BASE_URL/api/file/get_info.php") || return
if [[ "$XML" = *\<error\>* ]]; then
local ERR MESSAGE
ERR=$(echo "$XML" | parse_tag_quiet 'error')
[ "$ERR" -eq 110 ] && return $ERR_LINK_DEAD
MESSAGE=$(echo "$XML" | parse_tag_quiet 'message')
log_error "Unexpected remote error: $MESSAGE ($ERR)"
return $ERR_FATAL
fi
REQ_OUT=c
if [[ $REQ_IN = *f* ]]; then
echo "$XML" | parse_tag 'filename' && REQ_OUT="${REQ_OUT}f"
fi
if [[ $REQ_IN = *s* ]]; then
echo "$XML" | parse_tag 'size' && REQ_OUT="${REQ_OUT}s"
fi
# also available: file description, tags, public/private,
# password protection, filetype, mimetype, file owner, date of creation
echo $REQ_OUT
}