summaryrefslogtreecommitdiff
path: root/modules/g2_import/views/admin_g2_import.html.php
blob: cf5e475571053cc85ac02c6d6a18dca328a9f552 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= $theme->css("jquery.autocomplete.css") ?>
<?= $theme->script("jquery.autocomplete.js") ?>
<script type="text/javascript">
$("document").ready(function() {
  $("form input[name=embed_path]").autocomplete(
    "<?= url::site("__ARGS__") ?>".replace("__ARGS__", "admin/g2_import/autocomplete"),
    {
      max: 256,
      loadingClass: "g-loading-small",
    });
});
</script>

<div id="g-admin-g2-import" class="g-block">
  <h1> <?= t("Gallery 2 import") ?> </h1>
  <p>
    <?= t("Import your Gallery 2 users, photos, movies, comments and tags into your new Gallery 3 installation.") ?>
  </p>

  <script type="text/javascript">
    $(document).ready(function() {
      $("#g-admin-g2-import-tabs").tabs()
      <? if (!isset($g2_version)): ?>
      .tabs("disable", 1)
      .tabs("disable", 2)
      <? elseif ($g3_resource_count > .9 * $g2_resource_count):  ?>
      .tabs("select", 2)
      <? else: ?>
      .tabs("select", 1)
      <? endif ?>
      ;
    });
  </script>
  <div id="g-admin-g2-import-tabs" class="g-block-content">
    <ul>
      <li>
        <a href="#g-admin-g2-import-configure"><?= t("1. Configure Gallery2 path") ?></a>
      </li>
      <li>
        <a href="#g-admin-g2-import-import"><?= t("2. Import!") ?></a>
      </li>
      <li>
        <a href="#g-admin-g2-import-notes"><?= t("3. After your import") ?></a>
      </li>
    </ul>
    <div id="g-admin-g2-import-configure" class="g-block-content">
      <?= $form ?>
    </div>
    <div id="g-admin-g2-import-import">
      <? if (isset($g2_version)): ?>
      <ul>
        <li>
          <?= t("Gallery version %version detected", array("version" => $g2_version)) ?>
        </li>
        <? if ($g2_sizes["thumb"]["size"] && $thumb_size != $g2_sizes["thumb"]["size"]): ?>
        <li>
          <?= t("Your most common thumbnail size in Gallery 2 is %g2_pixels pixels, but your Gallery 3 thumbnail size is set to %g3_pixels pixels. <a href=\"%url\">Using the same value</a> will speed up your import.",
                array("g2_pixels" => $g2_sizes["thumb"]["size"],
                      "g3_pixels" => $thumb_size,
                      "url" => html::mark_clean(url::site("admin/theme_options")))) ?>
        </li>
        <? endif ?>

        <? if ($g2_sizes["resize"]["size"] && $resize_size != $g2_sizes["resize"]["size"]): ?>
        <li>
          <?= t("Your most common intermediate size in Gallery 2 is %g2_pixels pixels, but your Gallery 3 intermediate size is set to %g3_pixels pixels. <a href=\"%url\">Using the same value</a> will speed up your import.",
                array("g2_pixels" => $g2_sizes["resize"]["size"],
                      "g3_pixels" => $resize_size,
                      "url" => html::mark_clean(url::site("admin/theme_options")))) ?>
        </li>
        <? endif ?>

        <li>
          <?
          $t = array();
          $t[] = t2("1 user", "%count users", $g2_stats["users"]);
          $t[] = t2("1 group", "%count groups", $g2_stats["groups"]);
          $t[] = t2("1 album", "%count albums", $g2_stats["albums"]);
          $t[] = t2("1 photo", "%count photos/movies", $g2_stats["photos"] + $g2_stats["movies"]);
          $t[] = t2("1 comment", "%count comments", $g2_stats["comments"]);
          $t[] = t2("1 tagged photo/movie/album", "%count tagged photos/movies/albums",
                    $g2_stats["tags"]);
          ?>
          <?= t("Your Gallery 2 has the following importable data in it: %t0, %t1, %t2, %t3, %t4, %t5",
                array("t0" => $t[0], "t1" => $t[1], "t2" => $t[2],
                      "t3" => $t[3], "t4" => $t[4], "t5" => $t[5])) ?>
        </li>

        <? if ($g3_resource_count): ?>
        <li>
          <?
          $t = array();
          $t[] = t2("1 user", "%count users", $g3_stats["user"]);
          $t[] = t2("1 group", "%count groups", $g3_stats["group"]);
          $t[] = t2("1 album", "%count albums", $g3_stats["album"]);
          $t[] = t2("1 photo/movie", "%count photos/movies", $g3_stats["item"]);
          $t[] = t2("1 comment", "%count comments", $g3_stats["comment"]);
          $t[] = t2("1 tagged photo/movie/album", "%count tagged photos/movies/albums", $g3_stats["tag"]);
          ?>
          <?= t("It looks like you've imported the following Gallery 2 data already: %t0, %t1, %t2, %t3, %t4, %t5",
                array("t0" => $t[0], "t1" => $t[1], "t2" => $t[2],
                      "t3" => $t[3], "t4" => $t[4], "t5" => $t[5])) ?>
        </li>
        <? endif ?>
      </ul>
      <p>
        <a class="g-button g-dialog-link ui-state-default ui-corner-all"
           href="<?= url::site("admin/maintenance/start/g2_import_task::import?csrf=$csrf") ?>">
          <?= t("Begin import!") ?>
        </a>
      </p>
      <? endif ?>
    </div>
    <div id="g-admin-g2-import-notes">
      <ul class="enumeration">
        <li>
          <?= t("Gallery 3 does not support per-user / per-item permissions.  <b>Review permissions!</b>") ?>
        </li>
        <li>
          <?= t("The only supported file formats are JPG, PNG and GIF, FLV and MP4.  Other formats will be skipped.") ?>
        </li>
        <li>
          <p>
            <?= t("Redirecting Gallery 2 URLs once your migration is complete.  Put this block at the top of your gallery2/.htaccess file and all Gallery 2 urls will be redirected to Gallery 3") ?>
          </p>

          <textarea id="g-g2-redirect-rules" rows="4" cols="60">&lt;IfModule mod_rewrite.c&gt;
      Options +FollowSymLinks
      RewriteEngine On
      RewriteBase <?= html::clean(g2_import::$g2_base_url) ?>

      RewriteRule ^(.*)$ <?= url::site("g2/map?path=\$1") ?>   [QSA,L,R=301]
    &lt;/IfModule&gt;</textarea>
          <script type="text/javascript">
            $(document).ready(function() {
              $("#g-g2-redirect-rules").click(function(event) {
                this.select();
              });
            });
          </script>
        </li>
      </ul>
    </div>
  </div>
</div>