1
0
Fork 0

Add Scheduling Capabilities

Implement a scheduler based on crontab to execute calls at specific
times.  Using PHP-Cron, we can implement a single cron at the system
level and then use methods to add cron jobs at the PHP level.  This
allows eventually expansion to handling multiple song calls.
This commit is contained in:
Andrew Tomaka 2013-02-26 17:27:12 -05:00
parent 09191ac270
commit fcf0ef7c58
4 changed files with 25 additions and 11 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ composer.lock
conf/*.yaml
files/*.mp3
files/*.xml
logs/*.log

6
README.md Normal file
View File

@ -0,0 +1,6 @@
install
add cronjob to run master file
```
* * * * * cd /path/to/project && php caller.php 1>> /dev/null 2>&1
```

View File

@ -3,20 +3,26 @@ require 'vendor/autoload.php';
require 'vendor/twilio/sdk/Services/Twilio.php';
use Symfony\Component\Yaml\Yaml;
$crontab = new \HybridLogic\Cron\Crontab;
$settings = Yaml::parse('conf/settings.yaml');
$client = new Services_Twilio(
$settings['twilio']['sid'],
$settings['twilio']['token']
);
try {
$call = $client->account->calls->create(
$settings['application']['from'],
$settings['application']['to'],
$settings['application']['xml']
);
} catch(Exception $e) {
echo 'Error: ' . $e->getMessage();
}
$crontab->add_job(
\HybridLogic\Cron\Job::factory('test')
->on('0 10-16 * * *')
->trigger(function() use($settings, $client) {
$call = $client->account->calls->create(
$settings['application']['from'],
$settings['application']['to'],
$settings['application']['xml']
);
})
);
$crontab->run();

View File

@ -1,6 +1,7 @@
{
"require": {
"twilio/sdk": "3.10.*",
"symfony/yaml": "2.1.*"
"symfony/yaml": "2.1.*",
"hybridlogic/cron": "dev-master"
}
}