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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
|
<?php
/**
* This class defines the configuration options Zoph has and their default settings
*
* This file is part of Zoph.
*
* Zoph 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.
*
* Zoph 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 Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package Zoph
* @author Jeroen Roos
*/
namespace conf;
use conf\item\text;
use conf\item\checkbox;
use conf\item\number;
use conf\item\select;
use conf\item\salt;
use template\template;
use language;
use photo;
use album;
use user;
use TimeZone;
/**
* confDefault is the class that defines config options & their defaults
* in the database
*
* @package Zoph
* @author Jeroen Roos
*/
class confDefault extends conf {
/**
* Get default config
*/
protected static function getConfig() {
static::getConfigZoph();
static::getConfigInterface();
static::getConfigPath();
static::getConfigMaps();
static::getConfigImport();
static::getConfigWatermark();
static::getConfigRotate();
static::getConfigShare();
static::getConfigFeature();
static::getConfigDate();
}
/**
* Get config collection for Zoph
*/
private static function getConfigZoph() {
$zoph = new collection();
$zophVersion = new text();
$zophVersion->setName("zoph.version");
$zophVersion->setLabel("Zoph Version");
$zophVersion->setDesc("The current version of Zoph. You should not need to change this. " .
"Changing this may lead to unexpected behaviour.");
$zophVersion->setDefault("v01.03.00.000");
$zophVersion->setRegex("^v([[0-9]{2}\.){3}[0-9]{3}");
$zophVersion->setInternal();
$zoph[]=$zophVersion;
conf::addGroup($zoph, "zoph", "Zoph general settings",
"Settings that define the inner workings of Zoph", true);
}
/**
* Get config collection for interface settings
*/
private static function getConfigInterface() {
$interface = new collection();
$intTitle = new text();
$intTitle->setName("interface.title");
$intTitle->setLabel("Title");
$intTitle->setDesc("The title for the application. This is what appears " .
"on the home page and in the browser's title bar.");
$intTitle->setDefault("Zoph");
$intTitle->setRegex("^.*$");
$interface[]=$intTitle;
$intWidth = new text();
$intWidth->setName("interface.width");
$intWidth->setLabel("Screen width");
$intWidth->setDesc("A number in pixels (\"px\") or percent (\"%\"), the latter " .
"is a percentage of the user's browser window width.");
$intWidth->setDefault("1000px");
$intWidth->setRegex("^[0-9]+(px|%)$");
$interface[]=$intWidth;
$intTpl = new select();
$intTpl->setName("interface.template");
$intTpl->setLabel("Template");
$intTpl->setDesc("The template Zoph uses");
$intTpl->addOptions(template::getAll());
$intTpl->setDefault("default");
$interface[]=$intTpl;
$intAutoc = new checkbox();
$intAutoc->setName("interface.autocomplete");
$intAutoc->setLabel("Autocomplete");
$intAutoc->setDesc("Use autocompletion for selection of albums, categories, " .
"places and people instead of standard HTML selectboxes. Can be individually " .
"switched off from user preferences.");
$intAutoc->setDefault(true);
$interface[]=$intAutoc;
$intLang = new select();
$intLang->setName("interface.language");
$intLang->setLabel("Default language");
$intLang->setDesc("Set the language used when neither the user or the browser " .
"specifies a preference");
$langs=language::getAll();
foreach ($langs as $iso => $lang) {
$intLang->addOption($iso, $lang->name);
}
$intLang->setDefault("en");
$interface[]=$intLang;
$intMaxDays = new number();
$intMaxDays->setName("interface.max.days");
$intMaxDays->setLabel("Maximum days");
$intMaxDays->setDesc("The maximum days Zoph displays in a dropdown box for 'photos " .
"changed / made in the past ... days' on the search screen");
$intMaxDays->setDefault("30");
$intMaxDays->setRegex("^[1-9][0-9]{0,2}$");
$intMaxDays->setBounds(0, 365, 1);
$interface[]=$intMaxDays;
$intSortOrder = new select();
$intSortOrder->setName("interface.sort.order");
$intSortOrder->setLabel("Default sort order");
$intSortOrder->setDesc("Default sort order of photos");
$intSortOrder->addOptions(photo::getFields());
$intSortOrder->setDefault("date");
$interface[]=$intSortOrder;
$intSortDir = new select();
$intSortDir->setName("interface.sort.dir");
$intSortDir->setLabel("Default sort direction");
$intSortDir->setDesc("Default sort order of photos, ascending or descending");
$intSortDir->addOption("asc", "Ascending");
$intSortDir->addOption("desc", "Descending");
$intSortDir->setDefault("asc");
$interface[]=$intSortDir;
$intLogonBgAlbum = new select();
$intLogonBgAlbum->setName("interface.logon.background.album");
$intLogonBgAlbum->setLabel("Logon screen background album");
$intLogonBgAlbum->setDesc("Select an album from which a random photo is chosen as a " .
"background for the logon screen");
$intLogonBgAlbum->addOptions(album::getSelectArray());
$intLogonBgAlbum->setOptionsTranslate(false);
$intLogonBgAlbum->setDefault(null);
$intLogonBgAlbum->requiresEnabled(new checkbox("share.enable"));
$interface[]=$intLogonBgAlbum;
$intCookieExpire = new select();
$intCookieExpire->setName("interface.cookie.expire");
$intCookieExpire->setLabel("Cookie Expiry Time");
$intCookieExpire->setDesc("Set the time after which a cookie will expire, that is, " .
"when a user will need to re-login. \"session\" (default) means: until user " .
"closes the browser");
$intCookieExpire->addOptions(array(
0 => "session",
3600 => "1 hour",
14400 => "4 hours",
28800 => "8 hours",
86400 => "1 day",
604800 => "1 week",
2592300 => "1 month"
));
$intCookieExpire->setDefault(0);
$interface[]=$intCookieExpire;
$users=user::getAll();
$intUserDefault = new select();
$intUserDefault->setName("interface.user.default");
$intUserDefault->setLabel("Default user");
$intUserDefault->setDesc("Automatically log on as this user when not logged " .
"on. Can be used to give people access without a username and password. " .
"This user should be a non-admin user and should not have any change " .
"permissions.");
$intUserDefault->addOption(0, "Disabled");
foreach ($users as $usr) {
if (!$usr->isAdmin()) {
$intUserDefault->addOption($usr->getId(), $usr->getName());
}
}
$intUserDefault->setDefault(0);
$interface[]=$intUserDefault;
$intUserCli = new select();
$intUserCli->setName("interface.user.cli");
$intUserCli->setLabel("CLI user");
$intUserCli->setDesc("This is the Zoph user that is used when using the CLI " .
"interface when interacting with Zoph. This user must be an admin user. " .
"You can also set it to \"autodetect\", which means Zoph will lookup the " .
"name of the Unix user starting the CLI client and tries to find that user's " .
"name in the Zoph database.");
$intUserCli->addOption("0", "Autodetect");
foreach ($users as $usr) {
if ($usr->isAdmin()) {
$intUserCli->addOption((string)$usr->getId(), $usr->getName());
}
}
$intUserCli->setDefault("1");
$interface[]=$intUserCli;
$intUserRemote = new checkbox();
$intUserRemote->setName("interface.user.remote");
$intUserRemote->setLabel("Enable REMOTE_USER authentication");
$intUserRemote->setDesc("Authenticate using an external authenticator. " .
"This could be used for a single sign-on or other external authentication " .
"mechanism. This relies on the external authenticator to insert a \$_SERVER " .
"variable 'REMOTE_USER'. If this is not present, Zoph will fall back to it's " .
"own logon screen");
$intUserRemote->setDefault(false);
$interface[]=$intUserRemote;
conf::addGroup($interface, "interface", "Interface settings",
"Settings that define how Zoph looks");
}
/**
* Get config collection for Path settings
*/
private static function getConfigPath() {
$path = new collection();
$pathImages = new text();
$pathImages->setName("path.images");
$pathImages->setLabel("Images directory");
$pathImages->setDesc("Location of the images on the filesystem. Absolute path, " .
"thus starting with a /");
$pathImages->setDefault("/var/lib/zoph");
$pathImages->setRegex("^\/[A-Za-z0-9_.\/\-]+$");
$pathImages->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), and underscore (_). Must start with a /");
$pathImages->setRequired();
$path[]=$pathImages;
$pathUpload = new text();
$pathUpload->setName("path.upload");
$pathUpload->setLabel("Upload dir");
$pathUpload->setDesc("Directory where uploaded files are stored and from where " .
"files are imported in Zoph. This is a directory under the images directory " .
"(above). For example, if the images directory is set to /data/images and " .
"this is set to upload, photos will be uploaded to /data/images/upload.");
$pathUpload->setDefault("upload");
$pathUpload->setRegex("^[A-Za-z0-9_]+[A-Za-z0-9_.\/]*$");
$pathUpload->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), and underscore (_). Can not start with a dot or a slash");
$path[]=$pathUpload;
$pathTrash = new text();
$pathTrash->setName("path.trash");
$pathTrash->setLabel("Trash dir");
$pathTrash->setDesc("Directory where photos are moved when they are " .
"deleted. If left blank, files will remain where they were. This is a directory " .
"under the images directory (above). For example, if the images directory is set to " .
"/data/images and this is set to trash, photos will be moved to /data/images/trash.");
$pathTrash->setDefault("");
$pathTrash->setRegex("^[A-Za-z0-9_]*[A-Za-z0-9_.\/]*$");
$pathTrash->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), and underscore (_). Can not start with a dot or a slash");
$path[]=$pathTrash;
$pathMagic = new text();
$pathMagic->setName("path.magic");
$pathMagic->setLabel("Magic file");
$pathMagic->setDesc("Zoph needs a MIME Magic file to be able to determine the " .
"filetype of an uploaded file. This is an important security measure, since " .
"it prevents users from uploading files other than images and archives. If " .
"left empty, PHP will use the built-in Magic file, if for some reason this " .
"does not work, you can specify the location of the MIME magic file. Where " .
"this file is located, depends on your distribution, " .
"/usr/share/misc/magic.mgc, /usr/share/misc/file/magic.mgc, " .
"/usr/share/file/magic are often used.");
$pathMagic->setDefault("");
$pathMagic->setRegex("^(\/[A-Za-z0-9_.\/]+)?$");
$pathMagic->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), and underscore (_). Must start with a /. Can be " .
"empty for PHP builtin magic file.");
$path[]=$pathMagic;
$pathUnzip = new text();
$pathUnzip->setName("path.unzip");
$pathUnzip->setLabel("Unzip command");
$pathUnzip->setDesc("The command to use to unzip zip files. Leave empty to " .
"disable uploading .zip files. On most systems \"unzip\" will work.");
$pathUnzip->setDefault("");
$pathUnzip->setRegex("^([A-Za-z0-9_.\/ -]+|)$");
$pathUnzip->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), underscore (_), dash (-) and space. Can be empty to disable");
$path[]=$pathUnzip;
$pathUntar = new text();
$pathUntar->setName("path.untar");
$pathUntar->setLabel("Untar command");
$pathUntar->setDesc("The command to use to untar tar files. Leave empty to disable " .
"uploading .tar files. On most systems \"tar xvf\" will work.");
$pathUntar->setDefault("");
$pathUntar->setRegex("^([A-Za-z0-9_.\/ ]+|)$");
$pathUntar->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), underscore (_), dash (-) and space. Can be empty to disable");
$path[]=$pathUntar;
$pathUngz = new text();
$pathUngz->setName("path.ungz");
$pathUngz->setLabel("Ungzip command");
$pathUngz->setDesc("The command to use to unzip gzip files. Leave empty to disable " .
"uploading .gz files. On most systems \"gunzip\" will work.");
$pathUngz->setDefault("");
$pathUngz->setRegex("^([A-Za-z0-9_.\/ ]+|)$");
$pathUngz->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), underscore (_), dash (-) and space. Can be empty to disable");
$path[]=$pathUngz;
$pathUnbz = new text();
$pathUnbz->setName("path.unbz");
$pathUnbz->setLabel("Unbzip command");
$pathUnbz->setDesc("The command to use to unzip bzip files. Leave empty to disable " .
"uploading .bz files. On most systems \"bunzip2\" will work.");
$pathUnbz->setDefault("");
$pathUnbz->setRegex("^([A-Za-z0-9_.\/ ]+|)$");
$pathUnbz->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward " .
"slash (/), dot (.), underscore (_), dash (-) and space. Can be empty to disable");
$path[]=$pathUnbz;
conf::addGroup($path, "path", "Paths", "File and directory locations");
}
/**
* Get config collection for maps settings
*/
private static function getConfigMaps() {
$maps = new collection();
$mapsProvider = new select();
$mapsProvider->setName("maps.provider");
$mapsProvider->setDesc("Enable or disable mapping support and choose the " .
"mapping provider");
$mapsProvider->setLabel("Mapping provider");
$mapsProvider->addOption("", "Disabled");
$mapsProvider->addOption("mapbox", "Mapbox (OpenStreetMap)");
$mapsProvider->addOption("osm", "OpenStreetMap");
$mapsProvider->setDefault("");
$maps[]=$mapsProvider;
$mapsMapBoxAPIKey = new text();
$mapsMapBoxAPIKey->setName("maps.mapbox.apikey");
$mapsMapBoxAPIKey->setLabel("Mapbox API key");
$mapsMapBoxAPIKey->setDesc("API key to use to access MapBox. The default is Zoph's API key, please do not use it in other projects. If you are setting up a high-volume site, please consider requesting your own key");
$mapsMapBoxAPIKey->setDefault("pk.eyJ1IjoiamVyb2Vucm5sIiwiYSI6ImNpdmh6dnlsazAwYWUydXBrbG50cHhlbmMifQ.0pSkJxO6ycD2Wg5GL4yYyw");
$mapsMapBoxAPIKey->setRegex("^[0-9a-zA-Z\.]+$");
$maps[]=$mapsMapBoxAPIKey;
$mapsGeocode = new select();
$mapsGeocode->setName("maps.geocode");
$mapsGeocode->setLabel("Geocode provider");
$mapsGeocode->setDesc("With geocoding you can lookup the location of a " .
"place from it's name. Here you can select the provider. Currently " .
"the only one available is 'geonames'");
$mapsGeocode->addOption("", "Disabled");
$mapsGeocode->addOption("geonames", "GeoNames");
$mapsGeocode->setDefault("");
$maps[]=$mapsGeocode;
conf::addGroup($maps, "maps", "Mapping support",
"Add maps to Zoph using various different mapping providers.");
}
/**
* Get config collection for import settings
*/
private static function getConfigImport() {
$import = new collection();
$importEnable = new checkbox();
$importEnable->setName("import.enable");
$importEnable->setLabel("Import through webinterface");
$importEnable->setDesc("Use this option to enable or disable importing using " .
"the webbrowser. With this option enabled, an admin user, or a user with " .
"import rights, can import files placed in the import directory (below) " .
"into Zoph. If you want users to be able to upload as well, you need to " .
"enable uploading as well.");
$importEnable->setDefault(false);
$import[]=$importEnable;
$importUpload = new checkbox();
$importUpload->setName("import.upload");
$importUpload->setLabel("Upload through webinterface");
$importUpload->setDesc("Use this option to enable or disable uploading files. " .
"With this option enabled, an admin user, or a user with import rights, " .
"can upload files to the server running Zoph, they will be placed in the " .
"import directory (below). This option requires \"import through web " .
"interface\" (above) enabled.");
$importUpload->setDefault(false);
$import[]=$importUpload;
$importMaxupload = new number();
$importMaxupload->setName("import.maxupload");
$importMaxupload->setLabel("Maximum filesize");
$importMaxupload->setDesc("Maximum size of uploaded file in bytes. You might " .
"also need to change upload_max_filesize, post_max_size and possibly" .
"max_execution_time and max_input_time in php.ini.");
$importMaxupload->setRegex("^[0-9]+$");
$importMaxupload->setDefault("10000000");
$importMaxupload->setBounds(0, 1000000000, 1); // max = 1GB
$import[]=$importMaxupload;
$importParallel = new number();
$importParallel->setName("import.parallel");
$importParallel->setLabel("Resize parallel");
$importParallel->setDesc("Photos will be resized to thumbnail and midsize " .
"images during import, this setting determines how many resize actions run " .
"in parallel. Can be set to any number. If you have a fast server with " .
"multiple CPU's or cores, you can increase this for faster response on " .
"the import page.");
$importParallel->setRegex("^[0-9]+$");
$importParallel->setBounds(1, 99, 1);
$importParallel->setDefault("1");
$import[]=$importParallel;
$importRotate = new checkbox();
$importRotate->setName("import.rotate");
$importRotate->setLabel("Rotate images");
$importRotate->setDesc("Automatically rotate imported images, requires jhead");
$importRotate->setDefault(false);
$import[]=$importRotate;
$importResize = new select();
$importResize->setName("import.resize");
$importResize->setLabel("Resize method");
$importResize->setDesc("Determines how to resize an image during import. " .
"Resize can be about 3 times faster than resample, but the resized image " .
"has a lower quality.");
$importResize->addOption("resize", "Resize (lower quality / low CPU / fast)");
$importResize->addOption("resample", "Resample (high quality / high CPU / slow)");
$importResize->setDefault("resample");
$import[]=$importResize;
$importDated = new checkbox();
$importDated->setName("import.dated");
$importDated->setLabel("Dated dirs");
$importDated->setDesc("Automatically place photos in dated dirs " .
"(\"2012.10.16/\") during import");
$importDated->setDefault(false);
$import[]=$importDated;
$importDatedHier = new checkbox();
$importDatedHier->setName("import.dated.hier");
$importDatedHier->setLabel("Hierarchical dated dirs");
$importDatedHier->setDesc("Automatically place photos in a dated directory " .
"tree (\"2012/10/16/\") during import. Ignored unless \"Dated dirs\" is " .
"also enabled");
$importDatedHier->setDefault(false);
$import[]=$importDatedHier;
/**
* This requires octdec to be run before using it so use
* octdec(conf::get("import.filemode")) or you will get "funny" results
*/
$importFilemode = new select();
$importFilemode->setName("import.filemode");
$importFilemode->setLabel("File mode");
$importFilemode->setDesc("File mode for the files that are imported in Zoph. " .
"Determines who can read or write the files. (RW: Read/Write, RO: Read Only)");
$importFilemode->addOptions(array(
"0644" => "RW for user, RO for others (0644)",
"0664" => "RW for user/collection, RO for others (0664)",
"0666" => "RW for everyone (0666)",
"0660" => "RW for user/collection, not readable for others (0660)",
"0640" => "RW for user, RO for collection, not readable for others (0640)",
"0600" => "RW for user, not readable for others (0600)"
));
$importFilemode->setDefault("0644");
$import[]=$importFilemode;
/**
* This requires octdec to be run before using it so use
* octdec(conf::get("import.dirmode")) or you will get "funny" results
*/
$importDirmode = new select();
$importDirmode->setName("import.dirmode");
$importDirmode->setLabel("dir mode");
$importDirmode->setDesc("Mode for directories that are created by Zoph. " .
"Determines who can read or write the files. (RW: Read/Write, RO: Read Only)");
$importDirmode->addOptions(array(
"0755" => "RW for user, RO for others (0755)",
"0775" => "RW for user/collection, RO for others (0775)",
"0777" => "RW for everyone (0777)",
"0770" => "RW for user/collection, not readable for others (0770)",
"0750" => "RW for user, RO for collection, not readable for others (0750)",
"0700" => "RW for user, not readable for others (0700)"
));
$importDirmode->setDefault("0755");
$import[]=$importDirmode;
$importCliVerbose=new number();
$importCliVerbose->setName("import.cli.verbose");
$importCliVerbose->setLabel("CLI verbose");
$importCliVerbose->setDesc("Set CLI verbosity, can be overriden with --verbose");
$importCliVerbose->setDefault("0");
$importCliVerbose->setBounds(1, 99, 1);
$importCliVerbose->setInternal();
$import[]=$importCliVerbose;
$importCliThumbs=new checkbox();
$importCliThumbs->setName("import.cli.thumbs");
$importCliThumbs->setLabel("CLI: generate thumbnails");
$importCliThumbs->setDesc("Generate thumbnails when importing via CLI. Can be " .
"overridden with --thumbs (-t) and --no-thumbs (-n).");
$importCliThumbs->setDefault(true);
$import[]=$importCliThumbs;
$importCliExif=new checkbox();
$importCliExif->setName("import.cli.exif");
$importCliExif->setLabel("CLI: read EXIF data");
$importCliExif->setDesc("Read EXIF data when importing via CLI. The default " .
"behaviour can be overridden with --exif and --no-exif.");
$importCliExif->setDefault(true);
$import[]=$importCliExif;
$importCliSize=new checkbox();
$importCliSize->setName("import.cli.size");
$importCliSize->setLabel("CLI: size of image");
$importCliSize->setDesc("Update image dimensions in database when importing " .
"via CLI. The default behaviour can be overridden with --size and --no-size.");
$importCliSize->setDefault(true);
$import[]=$importCliSize;
$importCliHash=new checkbox();
$importCliHash->setName("import.cli.hash");
$importCliHash->setLabel("CLI: calculate hash");
$importCliHash->setDesc("Calculate a hash when importing or updating a photo " .
"using the CLI. Can be overridden with --hash and --no-hash.");
$importCliHash->setDefault(true);
$import[]=$importCliHash;
$importCliCopy=new checkbox();
$importCliCopy->setName("import.cli.copy");
$importCliCopy->setDefault(false);
$importCliCopy->setLabel("CLI: copy on import");
$importCliCopy->setDesc("Make a copy of a photo that is imported using the " .
"CLI. Can be overridden with --copy and --move.");
$import[]=$importCliCopy;
$importCliUseids=new checkbox();
$importCliUseids->setName("import.cli.useids");
$importCliUseids->setLabel("CLI: Use Ids");
$importCliUseids->setDesc("Use ids instead of filenames when referencing photos.");
$importCliUseids->setDefault(false);
$importCliUseids->setInternal();
$import[]=$importCliUseids;
$importCliAddAuto=new checkbox();
$importCliAddAuto->setName("import.cli.add.auto");
$importCliAddAuto->setLabel("CLI: Auto add");
$importCliAddAuto->setDesc("Add non-existent albums, categories, places and " .
"people, when a parent is defined.");
$importCliAddAuto->setDefault(false);
$importCliAddAuto->setInternal();
$import[]=$importCliAddAuto;
$importCliAddAlways=new checkbox();
$importCliAddAlways->setName("import.cli.add.always");
$importCliAddAlways->setLabel("CLI: Auto add always");
$importCliAddAlways->setDesc("Add non-existent albums, categories, places " .
"and people, regardsless of whether a parent is defined.");
$importCliAddAlways->setDefault(false);
$importCliAddAlways->setInternal();
$import[]=$importCliAddAlways;
$importCliRecursive=new checkbox();
$importCliRecursive->setName("import.cli.recursive");
$importCliRecursive->setLabel("CLI: Recursive");
$importCliRecursive->setDesc("Recursively import directories when importing " .
"using the CLI.");
$importCliRecursive->setDefault(false);
$importCliRecursive->setInternal();
$import[]=$importCliRecursive;
conf::addGroup($import, "import", "Import", "Importing and uploading photos");
}
/**
* Get config collection for watermark settings
*/
private static function getConfigWatermark() {
$watermark = new collection();
$watermarkEnable = new checkbox();
$watermarkEnable->setName("watermark.enable");
$watermarkEnable->setLabel("Enable Watermarking");
$watermarkEnable->setDesc("Watermarking only works if the watermark file below is set " .
"to an existing GIF image. Please note that enabling this function uses a " .
"rather large amount of memory on the webserver. PHP by default allows a " .
"script to use a maximum of 8MB memory. You should probably increase this " .
"by changing memory_limit in php.ini. A rough estimation of how much memory " .
"it will use is 6 times the number of megapixels in your camera. For " .
"example, if you have a 5 megapixel camera, change memory_limit in php.ini to 30M");
$watermarkEnable->setDefault(false);
$watermark[]=$watermarkEnable;
$watermarkFile = new text();
$watermarkFile->setName("watermark.file");
$watermarkFile->setLabel("Watermark file");
$watermarkFile->setDesc("If watermarking is used, this should be set to the name of the " .
"file that will be used as the watermark. It should be a GIF or PNG file, for best " .
"results, use contrasting colours and transparency. In the Contrib directory, " .
"3 example files are included. The filename is relative to the image directory, " .
"defined above.");
$watermarkFile->setDefault("");
$watermarkFile->setRegex("(^$|^[A-Za-z0-9_]+[A-Za-z0-9_.\/]*\.(gif|png)$)");
$watermarkFile->setHint("Alphanumeric characters (A-Z, a-z and 0-9), forward slash (/), " .
"dot (.), and underscore (_). Can not start with a dot or a slash");
$watermark[]=$watermarkFile;
$watermarkPosX = new select();
$watermarkPosX->setName("watermark.pos.x");
$watermarkPosX->setLabel("Horizontal position");
$watermarkPosX->setDesc("Define where the watermark will be placed horizontally.");
$watermarkPosX->addOptions(array(
"left" => "Left",
"center" => "Center",
"right" => "Right"
));
$watermarkPosX->setDefault("center");
$watermark[]=$watermarkPosX;
$watermarkPosY = new select();
$watermarkPosY->setName("watermark.pos.y");
$watermarkPosY->setLabel("Vertical position");
$watermarkPosY->setDesc("Define where the watermark will be placed vertically.");
$watermarkPosY->addOptions(array(
"top" => "Top",
"center" => "Center",
"bottom" => "Bottom"
));
$watermarkPosY->setDefault("center");
$watermark[]=$watermarkPosY;
$watermarkTrans = new number();
$watermarkTrans->setName("watermark.transparency");
$watermarkTrans->setLabel("Watermark transparency");
$watermarkTrans->setDesc("Define the transparency of a watermark. 0: fully " .
"transparent (invisible, don't use this, it's pointless and eats " .
"up a lot of resources, better turn off the watermark feature " .
"altogether) to 100: no transparency.");
$watermarkTrans->setDefault("50");
$watermarkTrans->setRegex("^(100|[0-9]{1,2})$");
$watermarkTrans->setBounds(0, 100, 1);
$watermark[]=$watermarkTrans;
conf::addGroup($watermark, "watermark", "Watermarking",
"Watermarking can display a (copyright) watermark over your full-size images.");
}
/**
* Get config collection for rotation settings
*/
private static function getConfigRotate() {
$rotate = new collection();
$rotateEnable = new checkbox();
$rotateEnable->setName("rotate.enable");
$rotateEnable->setLabel("Rotation");
$rotateEnable->setDesc("Allow users (admins or with write access) to rotate images");
$rotateEnable->setDefault(false);
$rotate[]=$rotateEnable;
$rotateCommand = new select();
$rotateCommand->setName("rotate.command");
$rotateCommand->setLabel("Rotate command");
$rotateCommand->setDesc("Determine which command is used to rotate the image. " .
"This command must be available on your system. Convert is a lossy " .
"rotate function, which means it will lower the image quality of your " .
"photo. JPEGtran, on the other hand, only works on JPEG images, but " .
"is lossless.");
$rotateCommand->addOptions(array(
"convert" => "convert",
"jpegtran" => "jpegtran"
));
$rotateCommand->setDefault("convert");
$rotate[]=$rotateCommand;
$rotateBackup = new checkbox();
$rotateBackup->setName("rotate.backup");
$rotateBackup->setLabel("Backup");
$rotateBackup->setDesc("Keep a backup image when rotating an image.");
$rotateBackup->setDefault(true);
$rotate[]=$rotateBackup;
$rotateBackupPrefix = new text();
$rotateBackupPrefix->setName("rotate.backup.prefix");
$rotateBackupPrefix->setLabel("Backup prefix");
$rotateBackupPrefix->setDesc("Prepend backup file for rotation backups with this.");
$rotateBackupPrefix->setDefault("orig_");
$rotateBackupPrefix->setRegex("^[a-zA-Z0-9_\-]+$");
$rotateBackupPrefix->setRequired();
$rotate[]=$rotateBackupPrefix;
conf::addGroup($rotate, "rotate", "Rotation", "Rotate images");
}
/**
* Get config collection for share settings
*/
private static function getConfigShare() {
$share = new collection();
$shareURLoverride = new text();
$shareURLoverride->setName("share.url.override");
$shareURLoverride->setLabel("URL override");
$shareURLoverride->setDesc("In most cases, Zoph can determine the URL it is " .
"reachable on. If the URL it automatically determines is incorrect, " .
"you can override it here. Specify a full URL, including http or https.");
$shareURLoverride->setRegex("^$|^http(s?):\/\/[a-zA-Z0-9\.\/~]+$");
$shareURLoverride->setDefault("");
$share[]=$shareURLoverride;
$shareEnable = new checkbox();
$shareEnable->setName("share.enable");
$shareEnable->setLabel("Sharing");
$shareEnable->setDesc("Sometimes, you may wish to share an image in Zoph " .
"without creating a user account for those who will be watching them. " .
"For example, in order to post a link to an image on a forum or website. " .
"When this option is enabled, you will see a 'share' tab next to a photo, " .
"where you will find a few ways to share a photo, such as a url and a " .
"HTML <img> tag. With this special url, it is possible to open a " .
"photo without logging in to Zoph. You can determine per user whether " .
"or not this user will see the tab and therefore the urls.");
$shareEnable->setDefault(false);
$share[]=$shareEnable;
$shareSaltFull = new salt();
$shareSaltFull->setName("share.salt.full");
$shareSaltFull->setLabel("Salt for sharing full size images");
$shareSaltFull->setDesc("When using the sharing feature, Zoph uses a hash " .
"to identify a photo. Because you do not want people who have access to " .
"you full size photos (via Zoph or otherwise) to be able to generate " .
"these hashes, you should give Zoph a secret salt so only authorized " .
"users of your Zoph installation can generate them. The salt for full " .
"size images (this one) must be different from the salt of mid size " .
"images (below), because this allows Zoph to distinguish between them. " .
"If a link to your Zoph installation is being abused (for example " .
"because someone whom you mailed a link has published it on a forum), " .
"you can modify the salt to make all hash-based links to your Zoph invalid.");
$shareSaltFull->setDefault("Change this");
$shareSaltFull->setRequired();
$share[]=$shareSaltFull;
$shareSaltMid = new salt();
$shareSaltMid->setName("share.salt.mid");
$shareSaltMid->setLabel("Salt for sharing mid size images");
$shareSaltMid->setDesc("The salt for mid size images (this one) must be " .
"different from the salt of full images (above), because this allows " .
"Zoph to distinguish between them. If a link to your Zoph installation " .
"is being abused (for example because someone whom you mailed a link " .
"has published it on a forum), you can modify the salt to make all " .
"hash-based links to your Zoph invalid.");
$shareSaltMid->setDefault("Modify this");
$shareSaltMid->setRequired();
$share[]=$shareSaltMid;
conf::addGroup($share, "share", "Sharing", "Sharing photos with non-logged on users");
}
/**
* Get config collection for feature settings
*/
private static function getConfigFeature() {
$feature = new collection();
$featureDownload = new checkbox();
$featureDownload->setName("feature.download");
$featureDownload->setLabel("Downloading");
$featureDownload->setDesc("With this feature you can use download a set of " .
"photos (Albums, Categories, Places, People or a search result) in " .
"one or more ZIP files. Important! The photos in the ZIP file will " .
"NOT be watermarked. You must also grant each non-admin user you " .
"want to give these rights permission by changing \"can download " .
"zipfiles\" in the user's profile.");
$featureDownload->setDefault(false);
$feature[]=$featureDownload;
$featureComments = new checkbox();
$featureComments->setName("feature.comments");
$featureComments->setLabel("Comments");
$featureComments->setDesc("Enable comments. Before a user can actually leave " .
"comments, you should also give the user these rights through the edit " .
"user screen.");
$featureComments->setDefault(false);
$feature[]=$featureComments;
$featureSets = new checkbox();
$featureSets->setName("feature.sets");
$featureSets->setLabel("Photo sets");
$featureSets->setDesc("Enable the posibility to group photos in a set " .
"in a set, the order of the photos can be modified.");
$featureSets->setDefault(false);
$feature[]=$featureSets;
$featureMail = new checkbox();
$featureMail->setName("feature.mail");
$featureMail->setLabel("Mail photos");
$featureMail->setDesc("You can enable or disable the \"mail this photo feature\" " .
"using this option. Since Zoph needs to convert the photo into Base64 " .
"encoding for mail, it requires quite a large amount of memory if you " .
"try to send full size images and you may need to adjust memory_limit " .
"in php.ini, you should give it at least about 4 times the size of your " .
"largest image.");
$featureMail->setDefault(false);
$feature[]=$featureMail;
$featureMailBcc = new text();
$featureMailBcc->setName("feature.mail.bcc");
$featureMailBcc->setLabel("BCC address");
$featureMailBcc->setDesc("Automatically Blind Carbon Copy this mailaddress when " .
"a mail from Zoph is sent");
$featureMailBcc->setDefault("");
// not sure how long the "new" TLD's are going to be,
// 10 should be enough for most, feel free to report
// a bug if your TLD is longer.
$featureMailBcc->setRegex("^([0-9a-zA-Z_\-%\.]+@([0-9a-zA-Z\-]+\.)+[a-zA-Z]{2,10})?$");
$feature[]=$featureMailBcc;
$featureRating = new checkbox();
$featureRating->setName("feature.rating");
$featureRating->setLabel("Photo rating");
$featureRating->setDesc("Allow users to rate photos. Before a non-admin user can " .
"actually rate, you should also give the user these rights through the " .
"edit user screen.");
$featureRating->setDefault(true);
$feature[]=$featureRating;
conf::addGroup($feature, "feature", "Features", "Various features");
}
/**
* Get config collection for date settings
*/
private static function getConfigDate() {
$date = new collection();
$dateTz = new select();
$dateTz->setName("date.tz");
$dateTz->setLabel("Timezone");
$dateTz->setDesc("This setting determines the timezone to which your camera " .
"is set. Leave empty if you do not want to use this feature and always set " .
"your camera to the local timezone");
$dateTz->addOptions(TimeZone::getTzArray());
$dateTz->setDefault("");
$date[]=$dateTz;
$dateGuesstz = new checkbox();
$dateGuesstz->setName("date.guesstz");
$dateGuesstz->setLabel("Guess timezone");
$dateGuesstz->setDesc("If you have defined the precise location of a place " .
"(using the mapping feature), Zoph can 'guess' the timezone based on this " .
"location. It uses the Geonames project for this. This will, however, send " .
"information to their webserver, do not enable this feature if you're not " .
"comfortable with that.");
$dateGuesstz->setDefault(false);
$date[]=$dateGuesstz;
$dateFormat = new text();
$dateFormat->setName("date.format");
$dateFormat->setLabel("Date format");
$dateFormat->setDesc("This determines how Zoph displays dates. You can use the " .
"following characters: dDjlNSwzWFmMntLoYy (for explanation, see " .
"http://php.net/manual/en/function.date.php) and /, space, -, (, ), :, \",\" and .");
$dateFormat->setDefault("d-m-Y");
$dateFormat->setRegex("^[dDjlNSwzWFmMntLoYy\/ \-():,.]+$");
$dateFormat->setRequired();
$date[]=$dateFormat;
$dateTimeFormat = new text();
$dateTimeFormat->setName("date.timeformat");
$dateTimeFormat->setLabel("Time format");
$dateTimeFormat->setDesc("This determines how Zoph displays times. You can use the " .
"following characters: aABgGhHisueIOPTZcrU (for explanation, see " .
"http://php.net/manual/en/function.date.php) and /, space, -, (, ), :, \",\" and .");
$dateTimeFormat->setDefault("H:i:s T");
$dateTimeFormat->setRegex("^[aABgGhHisueIOPTZcrU\/ \-():,.]+$");
$dateTimeFormat->setRequired();
$date[]=$dateTimeFormat;
conf::addGroup($date, "date", "Date and time", "Date and time related settings");
}
}
|