forked from carlos22/fritzbox_api_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fritzbox_get_foncallslist.php
54 lines (49 loc) · 1.68 KB
/
fritzbox_get_foncallslist.php
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
<?php
/**
* Fritz!Box PHP tools CLI script to download the calllist from the Box
*
* Must be called via a command line, shows a help message if called without any or an invalid argument
* v0.3: Changed to download the new csv-file instead of the old xml, which is empty on newer firmwares
* on older firmwares use fritzbox_get_foncallslist_xml.php instead
*
* Check the config file fritzbox.conf.php!
*
* @author Gregor Nathanael Meyer <Gregor [at] der-meyer.de>
* @license http://creativecommons.org/licenses/by-sa/3.0/de/ Creative Commons cc-by-sa
* @version 0.4 2013-01-02
* @package Fritz!Box PHP tools
*/
try
{
// load the fritzbox_api class
require_once('fritzbox_api.class.php');
$fritz = new fritzbox_api();
// init the output message
$message = '';
if ( !$fritz->config->getItem('foncallslist_path') )
{
throw new Exception('Mandatory config Item foncallslist_path not set.');
}
if ( ( file_exists($fritz->config->getItem('foncallslist_path')) && !is_writable($fritz->config->getItem('foncallslist_path')) ) || ( !file_exists($fritz->config->getItem('foncallslist_path')) && !is_writable(dirname($fritz->config->getItem('foncallslist_path'))) ) )
{
throw new Exception('Config item foncallslist_path (' . $fritz->config->getItem('foncallslist_path') . ') is not writeable.');
}
$fritz->downloadPhonecalllist();
// set a log message
$message .= 'Call list sucessfully downloaded';
}
catch (Exception $e)
{
$message .= $e->getMessage();
}
// log the result
if ( isset($fritz) && is_object($fritz) && get_class($fritz) == 'fritzbox_api' )
{
$fritz->logMessage($message);
}
else
{
echo($message);
}
$fritz = null; // destroy the object to log out
?>