123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- if (cfr('EXPORT')) {
- $export = new Export();
- //some record deletion?
- if (ubRouting::checkGet($export::ROUTE_DELETE)) {
- $deletionResult = $export->deleteRecording(ubRouting::get($export::ROUTE_DELETE));
- if (empty($deletionResult)) {
- ubRouting::nav($export::URL_RECORDS);
- } else {
- show_error($deletionResult);
- }
- }
- //existing record preview
- if (ubRouting::checkGet($export::ROUTE_PREVIEW)) {
- show_window(__('Preview'), $export->renderRecordPreview(ubRouting::get($export::ROUTE_PREVIEW)));
- } else {
- //rendering schedule if not empty
- $exportSchedule = $export->renderScheduledExports();
- if ($exportSchedule) {
- show_window(__('Your scheduled records saving'), $exportSchedule);
- }
- //motion detection handling
- if (ubRouting::checkPost($export::PROUTE_MODET_RUN)) {
- if ($ubillingConfig->getAlterParam(MoDet::OPTION_ENABLE)) {
- if (cfr('MOTION')) {
- if ($export->isMoDetSpaceAvailable(ubRouting::post($export::PROUTE_MODET_RUN))) {
- $motionDetector = new MoDet();
- $motionThreshold = $export->getMoDetParamSensitivity(ubRouting::post($export::PROUTE_MODET_SENS));
- $motionTimeScale = $export->getMoDetParamTimeScale(ubRouting::post($export::PROUTE_MODET_TIMESCALE));
- $motionResult = $motionDetector->runMotionFiltering(ubRouting::post($export::PROUTE_MODET_RUN), $motionThreshold, $motionTimeScale);
- if (empty($motionResult)) {
- show_window('', $motionDetector->renderScheduledNotify());
- } else {
- show_error($motionResult);
- }
- } else {
- show_error(__('Motion filtering') . ': ' . __('Not enough free space') . '!');
- }
- } else {
- show_error(__('Access denied'));
- }
- }
- }
- //already saved records here
- if (ubRouting::checkGet($export::ROUTE_REFRESH)) {
- $zenflow = new ZenFlow('arreclst', $export->renderAvailableRecords(), 2000);
- $availableRecords = $zenflow->render();
- } else {
- $availableRecords = $export->renderAvailableRecords();
- }
- show_window(__('Your saved records'), $availableRecords);
- }
- } else {
- show_error(__('Access denied'));
- }
|