summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/admin_movies.php
blob: 38fa44a530398b83e6527d1afa028ef11a9689c7 (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php defined("SYSPATH") or die("No direct script access.");
/**
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2013 Bharat Mediratta
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA  02110-1301, USA.
 */
class Admin_Movies_Controller extends Admin_Controller {
  public function index() {
    // Print screen from new form.
    $form = $this->_get_admin_form();
    $this->_print_view($form);
  }

  public function save() {
    access::verify_csrf();
    $form = $this->_get_admin_form();
    if ($form->validate()) {
      module::set_var("gallery", "movie_allow_uploads", $form->settings->allow_uploads->value);
      if ($form->settings->rebuild_thumbs->value) {
        graphics::mark_dirty(true, false, "movie");
      }
      // All done - redirect with message.
      message::success(t("Movies settings updated successfully"));
      url::redirect("admin/movies");
    }
    // Something went wrong - print view from existing form.
    $this->_print_view($form);
  }

  private function _print_view($form) {
    list ($ffmpeg_version, $ffmpeg_date) = movie::get_ffmpeg_version();
    $ffmpeg_version = $ffmpeg_date ? "{$ffmpeg_version} ({$ffmpeg_date})" : $ffmpeg_version;
    $ffmpeg_path = movie::find_ffmpeg();
    $ffmpeg_dir = substr($ffmpeg_path, 0, strrpos($ffmpeg_path, "/"));

    $view = new Admin_View("admin.html");
    $view->page_title = t("Movies settings");
    $view->content = new View("admin_movies.html");
    $view->content->form = $form;
    $view->content->ffmpeg_dir = $ffmpeg_dir;
    $view->content->ffmpeg_version = $ffmpeg_version;
    print $view;
  }

  private function _get_admin_form() {
    $form = new Forge("admin/movies/save", "", "post", array("id" => "g-movies-admin-form"));
    $group = $form->group("settings")->label(t("Settings"));
    $group->dropdown("allow_uploads")
      ->label(t("Allow movie uploads into Gallery (does not affect existing movies)"))
      ->options(array("autodetect"=>t("only if FFmpeg is detected (default)"),
                      "always"=>t("always"), "never"=>t("never")))
      ->selected(module::get_var("gallery", "movie_allow_uploads", "autodetect"));
    $group->checkbox("rebuild_thumbs")
      ->label(t("Rebuild all movie thumbnails (once FFmpeg is installed, use this to update existing movie thumbnails)"))
      ->checked(false);  // always set as false
    $form->submit("save")->value(t("Save"));
    return $form;
  }
}