2010-07-23 03:22:03 +00:00
|
|
|
<?php
|
2017-03-25 18:12:16 +00:00
|
|
|
/**
|
|
|
|
* @file mod/wall_upload.php
|
|
|
|
* @brief Module for uploading a picture to the profile wall
|
2017-04-30 04:01:26 +00:00
|
|
|
*
|
2017-03-25 18:12:16 +00:00
|
|
|
* By default the picture will be stored in the photo album with the name Wall Photos.
|
|
|
|
* You can specify a different album by adding an optional query string "album="
|
|
|
|
* to the url
|
|
|
|
*/
|
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 04:01:26 +00:00
|
|
|
use Friendica\Core\Config;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 13:56:11 +00:00
|
|
|
use Friendica\Model\Photo;
|
|
|
|
use Friendica\Object\Image;
|
2010-07-23 03:22:03 +00:00
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function wall_upload_post(App $a, $desktopmode = true) {
|
2010-07-23 03:22:03 +00:00
|
|
|
|
2012-11-06 15:43:19 +00:00
|
|
|
logger("wall upload: starting new upload", LOGGER_DEBUG);
|
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
$r_json = (x($_GET, 'response') && $_GET['response'] == 'json');
|
2017-03-21 22:08:37 +00:00
|
|
|
$album = (x($_GET, 'album') ? notags(trim($_GET['album'])) : '');
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($a->argc > 1) {
|
|
|
|
if (! x($_FILES, 'media')) {
|
2015-08-24 11:54:41 +00:00
|
|
|
$nick = $a->argv[1];
|
2017-03-25 18:12:16 +00:00
|
|
|
$r = q("SELECT `user`.*, `contact`.`id` FROM `user`
|
|
|
|
INNER JOIN `contact` on `user`.`uid` = `contact`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0
|
|
|
|
AND `contact`.`self` = 1 LIMIT 1",
|
2015-08-24 11:54:41 +00:00
|
|
|
dbesc($nick)
|
|
|
|
);
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
if (! DBM::is_result($r)) {
|
2015-11-12 22:34:33 +00:00
|
|
|
if ($r_json) {
|
2018-01-22 14:16:25 +00:00
|
|
|
echo json_encode(['error'=>L10n::t('Invalid request.')]);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2012-04-22 17:37:25 +00:00
|
|
|
$user_info = api_get_user($a);
|
2017-03-25 18:12:16 +00:00
|
|
|
$r = q("SELECT `user`.*, `contact`.`id` FROM `user`
|
|
|
|
INNER JOIN `contact` on `user`.`uid` = `contact`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0
|
|
|
|
AND `contact`.`self` = 1 LIMIT 1",
|
2015-08-24 11:54:41 +00:00
|
|
|
dbesc($user_info['screen_name'])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
2015-11-12 22:34:33 +00:00
|
|
|
if ($r_json) {
|
2018-01-22 14:16:25 +00:00
|
|
|
echo json_encode(['error'=>L10n::t('Invalid request.')]);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2010-12-06 02:08:36 +00:00
|
|
|
return;
|
2015-08-24 11:54:41 +00:00
|
|
|
}
|
2012-04-08 23:19:45 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
/*
|
|
|
|
* Setup permissions structures
|
|
|
|
*/
|
2010-12-06 02:08:36 +00:00
|
|
|
$can_post = false;
|
|
|
|
$visitor = 0;
|
|
|
|
|
2010-12-10 13:19:04 +00:00
|
|
|
$page_owner_uid = $r[0]['uid'];
|
2012-04-08 23:19:45 +00:00
|
|
|
$default_cid = $r[0]['id'];
|
2010-12-10 13:19:04 +00:00
|
|
|
$page_owner_nick = $r[0]['nickname'];
|
|
|
|
$community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
|
2010-12-06 02:08:36 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if ((local_user()) && (local_user() == $page_owner_uid)) {
|
2010-12-06 02:08:36 +00:00
|
|
|
$can_post = true;
|
2017-03-25 18:12:16 +00:00
|
|
|
} else {
|
|
|
|
if ($community_page && remote_user()) {
|
2016-11-14 17:49:51 +00:00
|
|
|
$contact_id = 0;
|
2017-03-25 18:12:16 +00:00
|
|
|
if (is_array($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $v) {
|
|
|
|
if ($v['uid'] == $page_owner_uid) {
|
2016-11-14 17:49:51 +00:00
|
|
|
$contact_id = $v['cid'];
|
2012-09-05 05:50:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($contact_id) {
|
|
|
|
$r = q("SELECT `uid` FROM `contact`
|
|
|
|
WHERE `blocked` = 0 AND `pending` = 0
|
|
|
|
AND `id` = %d AND `uid` = %d LIMIT 1",
|
2016-11-14 17:49:51 +00:00
|
|
|
intval($contact_id),
|
2012-09-05 05:50:28 +00:00
|
|
|
intval($page_owner_uid)
|
|
|
|
);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2012-09-05 05:50:28 +00:00
|
|
|
$can_post = true;
|
2016-11-14 17:49:51 +00:00
|
|
|
$visitor = $contact_id;
|
2012-09-05 05:50:28 +00:00
|
|
|
}
|
2010-12-06 02:08:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (! $can_post) {
|
2015-11-12 22:34:33 +00:00
|
|
|
if ($r_json) {
|
2018-01-22 14:16:25 +00:00
|
|
|
echo json_encode(['error'=>L10n::t('Permission denied.')]);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2010-10-04 23:04:52 +00:00
|
|
|
killme();
|
|
|
|
}
|
2010-07-23 03:22:03 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (! x($_FILES, 'userfile') && ! x($_FILES, 'media')) {
|
2015-11-12 22:34:33 +00:00
|
|
|
if ($r_json) {
|
2018-01-22 14:16:25 +00:00
|
|
|
echo json_encode(['error'=>L10n::t('Invalid request.')]);
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2010-08-03 02:06:36 +00:00
|
|
|
killme();
|
2015-08-24 11:54:41 +00:00
|
|
|
}
|
2010-08-03 02:06:36 +00:00
|
|
|
|
2018-02-14 05:07:26 +00:00
|
|
|
$src = '';
|
|
|
|
$filename = '';
|
|
|
|
$filesize = 0;
|
|
|
|
$filetype = '';
|
2017-03-25 18:12:16 +00:00
|
|
|
if (x($_FILES, 'userfile')) {
|
2012-06-07 15:42:13 +00:00
|
|
|
$src = $_FILES['userfile']['tmp_name'];
|
|
|
|
$filename = basename($_FILES['userfile']['name']);
|
|
|
|
$filesize = intval($_FILES['userfile']['size']);
|
|
|
|
$filetype = $_FILES['userfile']['type'];
|
2017-03-25 18:12:16 +00:00
|
|
|
|
|
|
|
} elseif (x($_FILES, 'media')) {
|
|
|
|
if (is_array($_FILES['media']['tmp_name'])) {
|
2014-09-06 13:47:45 +00:00
|
|
|
$src = $_FILES['media']['tmp_name'][0];
|
2017-03-25 18:12:16 +00:00
|
|
|
} else {
|
2014-09-06 13:47:45 +00:00
|
|
|
$src = $_FILES['media']['tmp_name'];
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (is_array($_FILES['media']['name'])) {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filename = basename($_FILES['media']['name'][0]);
|
2017-03-25 18:12:16 +00:00
|
|
|
} else {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filename = basename($_FILES['media']['name']);
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (is_array($_FILES['media']['size'])) {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filesize = intval($_FILES['media']['size'][0]);
|
2017-03-25 18:12:16 +00:00
|
|
|
} else {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filesize = intval($_FILES['media']['size']);
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (is_array($_FILES['media']['type'])) {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filetype = $_FILES['media']['type'][0];
|
2017-03-25 18:12:16 +00:00
|
|
|
} else {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filetype = $_FILES['media']['type'];
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2012-06-07 15:42:13 +00:00
|
|
|
}
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2015-08-24 11:54:41 +00:00
|
|
|
if ($src=="") {
|
2015-11-12 22:34:33 +00:00
|
|
|
if ($r_json) {
|
2018-01-22 14:16:25 +00:00
|
|
|
echo json_encode(['error'=>L10n::t('Invalid request.')]);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Invalid request.').EOL);
|
2015-08-24 11:54:41 +00:00
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2014-09-06 13:47:45 +00:00
|
|
|
// This is a special treatment for picture upload from Twidere
|
2017-03-25 18:12:16 +00:00
|
|
|
if (($filename == "octet-stream") && ($filetype != "")) {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filename = $filetype;
|
|
|
|
$filetype = "";
|
|
|
|
}
|
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
if ($filetype == "") {
|
|
|
|
$filetype = Image::guessType($filename);
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2014-09-06 13:47:45 +00:00
|
|
|
|
|
|
|
// If there is a temp name, then do a manual check
|
|
|
|
// This is more reliable than the provided value
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2014-09-06 13:47:45 +00:00
|
|
|
$imagedata = getimagesize($src);
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($imagedata) {
|
2014-09-06 13:47:45 +00:00
|
|
|
$filetype = $imagedata['mime'];
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
logger("File upload src: " . $src . " - filename: " . $filename .
|
|
|
|
" - size: " . $filesize . " - type: " . $filetype, LOGGER_DEBUG);
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2017-03-25 20:07:12 +00:00
|
|
|
$maximagesize = Config::get('system', 'maximagesize');
|
2010-12-06 02:08:36 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (($maximagesize) && ($filesize > $maximagesize)) {
|
2018-01-24 02:59:16 +00:00
|
|
|
$msg = L10n::t('Image exceeds size limit of %s', formatBytes($maximagesize));
|
2015-08-24 11:54:41 +00:00
|
|
|
if ($r_json) {
|
2018-01-15 13:05:12 +00:00
|
|
|
echo json_encode(['error'=>$msg]);
|
2015-08-24 11:54:41 +00:00
|
|
|
} else {
|
|
|
|
echo $msg. EOL;
|
|
|
|
}
|
2010-12-06 02:08:36 +00:00
|
|
|
@unlink($src);
|
2011-08-18 03:52:18 +00:00
|
|
|
killme();
|
2010-12-06 02:08:36 +00:00
|
|
|
}
|
|
|
|
|
2010-07-23 05:41:45 +00:00
|
|
|
$imagedata = @file_get_contents($src);
|
2017-12-07 13:56:11 +00:00
|
|
|
$Image = new Image($imagedata, $filetype);
|
2010-07-23 03:22:03 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
if (! $Image->isValid()) {
|
2018-01-22 14:16:25 +00:00
|
|
|
$msg = L10n::t('Unable to process image.');
|
2015-08-24 11:54:41 +00:00
|
|
|
if ($r_json) {
|
2018-01-15 13:05:12 +00:00
|
|
|
echo json_encode(['error'=>$msg]);
|
2015-08-24 11:54:41 +00:00
|
|
|
} else {
|
|
|
|
echo $msg. EOL;
|
|
|
|
}
|
2010-07-23 05:41:45 +00:00
|
|
|
@unlink($src);
|
2010-07-23 06:17:41 +00:00
|
|
|
killme();
|
2010-07-23 05:41:45 +00:00
|
|
|
}
|
2010-07-23 03:22:03 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
$Image->orient($src);
|
2010-07-23 05:41:45 +00:00
|
|
|
@unlink($src);
|
2010-07-23 03:22:03 +00:00
|
|
|
|
2017-03-25 20:07:12 +00:00
|
|
|
$max_length = Config::get('system', 'max_image_length');
|
2017-03-25 18:12:16 +00:00
|
|
|
if (! $max_length) {
|
2012-07-08 15:18:05 +00:00
|
|
|
$max_length = MAX_IMAGE_LENGTH;
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
|
|
|
if ($max_length > 0) {
|
2017-12-07 13:56:11 +00:00
|
|
|
$Image->scaleDown($max_length);
|
2017-03-25 18:12:16 +00:00
|
|
|
logger("File upload: Scaling picture to new size " . $max_length, LOGGER_DEBUG);
|
2014-09-06 13:47:45 +00:00
|
|
|
}
|
2012-07-08 15:18:05 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
$width = $Image->getWidth();
|
|
|
|
$height = $Image->getHeight();
|
2010-07-23 05:41:45 +00:00
|
|
|
|
2018-02-20 10:02:07 +00:00
|
|
|
$hash = Photo::newResource();
|
2014-09-06 13:47:45 +00:00
|
|
|
|
2010-07-23 05:41:45 +00:00
|
|
|
$smallest = 0;
|
|
|
|
|
2017-03-21 22:08:37 +00:00
|
|
|
// If we don't have an album name use the Wall Photos album
|
|
|
|
if (! strlen($album)) {
|
2018-01-22 14:16:25 +00:00
|
|
|
$album = L10n::t('Wall Photos');
|
2017-03-21 22:08:37 +00:00
|
|
|
}
|
|
|
|
|
2012-04-08 23:19:45 +00:00
|
|
|
$defperm = '<' . $default_cid . '>';
|
2011-06-08 05:47:15 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
$r = Photo::store($Image, $page_owner_uid, $visitor, $hash, $filename, $album, 0, 0, $defperm);
|
2010-08-05 03:03:38 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if (! $r) {
|
2018-01-22 14:16:25 +00:00
|
|
|
$msg = L10n::t('Image upload failed.');
|
2015-08-24 11:54:41 +00:00
|
|
|
if ($r_json) {
|
2018-01-15 13:05:12 +00:00
|
|
|
echo json_encode(['error'=>$msg]);
|
2015-08-24 11:54:41 +00:00
|
|
|
} else {
|
|
|
|
echo $msg. EOL;
|
|
|
|
}
|
2010-07-23 06:17:41 +00:00
|
|
|
killme();
|
|
|
|
}
|
2010-07-23 05:41:45 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($width > 640 || $height > 640) {
|
2017-12-07 13:56:11 +00:00
|
|
|
$Image->scaleDown(640);
|
|
|
|
$r = Photo::store($Image, $page_owner_uid, $visitor, $hash, $filename, $album, 1, 0, $defperm);
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($r) {
|
2010-07-23 05:41:45 +00:00
|
|
|
$smallest = 1;
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2010-07-23 05:41:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($width > 320 || $height > 320) {
|
2017-12-07 13:56:11 +00:00
|
|
|
$Image->scaleDown(320);
|
|
|
|
$r = Photo::store($Image, $page_owner_uid, $visitor, $hash, $filename, $album, 2, 0, $defperm);
|
2017-03-25 18:12:16 +00:00
|
|
|
if ($r && ($smallest == 0)) {
|
2010-07-23 05:41:45 +00:00
|
|
|
$smallest = 2;
|
2017-03-25 18:12:16 +00:00
|
|
|
}
|
2010-07-23 05:41:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$basename = basename($filename);
|
2012-02-07 08:13:16 +00:00
|
|
|
|
2015-04-06 01:19:12 +00:00
|
|
|
if (!$desktopmode) {
|
2017-03-25 18:12:16 +00:00
|
|
|
$r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo`
|
|
|
|
WHERE `resource-id` = '%s'
|
|
|
|
ORDER BY `width` DESC LIMIT 1",
|
|
|
|
$hash
|
|
|
|
);
|
|
|
|
if (!$r) {
|
2015-11-07 15:24:59 +00:00
|
|
|
if ($r_json) {
|
2018-01-15 13:05:12 +00:00
|
|
|
echo json_encode(['error'=>'']);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2015-04-06 01:19:12 +00:00
|
|
|
return false;
|
2015-08-24 11:54:41 +00:00
|
|
|
}
|
2018-01-15 13:05:12 +00:00
|
|
|
$picture = [];
|
2015-04-06 01:19:12 +00:00
|
|
|
|
2017-03-25 18:12:16 +00:00
|
|
|
$picture["id"] = $r[0]["id"];
|
|
|
|
$picture["size"] = $r[0]["datasize"];
|
|
|
|
$picture["width"] = $r[0]["width"];
|
|
|
|
$picture["height"] = $r[0]["height"];
|
|
|
|
$picture["type"] = $r[0]["type"];
|
2017-08-26 07:32:10 +00:00
|
|
|
$picture["albumpage"] = System::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $hash;
|
2017-12-07 13:56:11 +00:00
|
|
|
$picture["picture"] = System::baseUrl() . "/photo/{$hash}-0." . $Image->getExt();
|
|
|
|
$picture["preview"] = System::baseUrl() . "/photo/{$hash}-{$smallest}." . $Image->getExt();
|
2015-04-06 01:19:12 +00:00
|
|
|
|
2015-11-07 15:24:59 +00:00
|
|
|
if ($r_json) {
|
2018-01-15 13:05:12 +00:00
|
|
|
echo json_encode(['picture'=>$picture]);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2015-04-06 01:19:12 +00:00
|
|
|
return $picture;
|
|
|
|
}
|
2012-02-22 07:35:50 +00:00
|
|
|
|
2016-01-28 00:26:19 +00:00
|
|
|
|
2015-11-07 15:24:59 +00:00
|
|
|
if ($r_json) {
|
2018-01-15 13:05:12 +00:00
|
|
|
echo json_encode(['ok'=>true]);
|
2016-11-14 17:49:51 +00:00
|
|
|
killme();
|
2015-11-12 22:34:33 +00:00
|
|
|
}
|
2015-08-24 11:54:41 +00:00
|
|
|
|
2012-02-22 07:35:50 +00:00
|
|
|
/* mod Waitman Gobble NO WARRANTY */
|
2017-01-27 03:57:53 +00:00
|
|
|
// if we get the signal then return the image url info in BBCODE
|
2012-06-07 15:42:13 +00:00
|
|
|
if ($_REQUEST['hush']!='yeah') {
|
2017-12-07 13:56:11 +00:00
|
|
|
echo "\n\n" . '[url=' . System::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . System::baseUrl() . "/photo/{$hash}-{$smallest}.".$Image->getExt()."[/img][/url]\n\n";
|
2017-01-27 03:57:53 +00:00
|
|
|
} else {
|
2017-12-07 13:56:11 +00:00
|
|
|
$m = '[url='.System::baseUrl().'/photos/'.$page_owner_nick.'/image/'.$hash.'][img]'.System::baseUrl()."/photo/{$hash}-{$smallest}.".$Image->getExt()."[/img][/url]";
|
2012-02-22 07:35:50 +00:00
|
|
|
return($m);
|
2012-06-07 15:42:13 +00:00
|
|
|
}
|
2012-02-22 07:35:50 +00:00
|
|
|
/* mod Waitman Gobble NO WARRANTY */
|
2010-07-23 05:41:45 +00:00
|
|
|
|
2010-07-23 03:22:03 +00:00
|
|
|
killme();
|
2011-03-05 04:55:32 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|