2017-09-14 20:08:16 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2020-03-06 20:13:57 +01:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2016-2020
|
2017-09-14 20:08:16 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2022-10-11 00:35:14 +02:00
|
|
|
//includes files
|
2023-06-15 19:28:23 +02:00
|
|
|
require_once dirname(__DIR__, 2) . "/resources/require.php";
|
2020-03-06 20:13:57 +01:00
|
|
|
require_once "resources/check_auth.php";
|
2017-09-14 20:08:16 +02:00
|
|
|
|
|
|
|
|
//check permisions
|
2019-12-19 20:04:16 +01:00
|
|
|
if (permission_exists('call_recording_play') || permission_exists('call_recording_download')) {
|
2017-09-14 20:08:16 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//download
|
2019-12-19 20:04:16 +01:00
|
|
|
if (is_uuid($_GET['id'])) {
|
|
|
|
|
$obj = new call_recordings;
|
|
|
|
|
$obj->recording_uuid = $_GET['id'];
|
|
|
|
|
$obj->binary = isset($_GET['binary']) ? true : false;
|
|
|
|
|
$obj->download();
|
|
|
|
|
}
|
2017-09-14 20:08:16 +02:00
|
|
|
|
2019-12-19 20:04:16 +01:00
|
|
|
?>
|