Pass old ID into _really_rewrite_record()
[irspy-moved-to-github.git] / web / htdocs / details / edit.mc
index 917c9f3..d437ec0 100644 (file)
-%# $Id: edit.mc,v 1.17 2006-11-16 17:27:15 mike Exp $
+%# $Id: edit.mc,v 1.28 2007-03-19 18:51:18 mike Exp $
 <%args>
+$op
 $id => undef
+$update => undef
 </%args>
+<%doc>
+Since this form is used in many different situations, some care is
+merited in considering the possibilities:
+
+Situation                                      Op      ID      Update
+----------------------------------------------------------------------
+Blank form for adding a new target             new
+New target rejected, changes required          new             X
+New target accepted and added                  new             X
+---------------------------------------------------------------------
+Existing target to be edited                   edit    X
+Edit rejected, changes required                        edit    X       X
+Target successfully updated                    edit    X       X
+----------------------------------------------------------------------
+Existing target to be copied                   copy    X
+New target rejected, changes required          copy    X       X
+New target accepted and added                  copy    X       X
+----------------------------------------------------------------------
+
+Submissions, whether of new targets, edits or copies, may be rejected
+due either to missing mandatory fields or host/name/port that form a
+duplicate ID.
+</%doc>
 <%perl>
-my $conn = new ZOOM::Connection("localhost:3313/IR-Explain---1", 0,
+# Sanity checking
+die "op = new but id defined" if $op eq "new" && defined $id;
+die "op != new but id undefined" if $op ne "new" && !defined $id;
+
+my $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1", 0,
                                user => "admin", password => "fruitbat",
                                elementSetName => "zeerex");
 my $rec = '<explain xmlns="http://explain.z3950.org/dtd/2.0/"/>';
-if (defined $id && $id ne "") {
+if (defined $id && ($op ne "copy" || !$update)) {
     # Existing record
-    my $query = 'rec.id="' . cql_quote($id) . '"';
+    my $query = cql_target($id);
     my $rs = $conn->search(new ZOOM::Query::CQL($query));
-    my $n = $rs->size();
-    if ($n == 0) {
-       $id = undef;
-    } else {
+    if ($rs->size() > 0) {
        $rec = $rs->record(0);
+    } else {
+       ### Is this an error?  I don't think the UI will ever provoke it
+       print qq[<p class="error">(New ID specified.)</p>\n];
+       $id = undef;
     }
 
 } else {
-    # New record
+    # No ID supplied -- this is a brand new record
     my $host = $r->param("host");
     my $port = $r->param("port");
     my $dbname = $r->param("dbname");
     if (!defined $host || $host eq "" ||
        !defined $port || $port eq "" ||
        !defined $dbname || $dbname eq "") {
-       print qq[<p class="error">You must specify host, port and database name.</p>\n];
-       $r->param(update => 0);
+       print qq[<p class="error">
+You must specify host, port and database name.</p>\n] if $update;
+       undef $update;
+    } else {
+       my $query = cql_target($host, $port, $dbname);
+       my $rs = $conn->search(new ZOOM::Query::CQL($query));
+       if ($rs->size() > 0) {
+           my $fakeid = xml_encode(uri_escape("$host:$port/$dbname"));
+           print qq[<p class="error">
+There is already
+<a href='?op=edit&amp;id=$fakeid'>a record</a>
+for this host, port and database name.
+</p>\n];
+           undef $update;
+       }
     }
-
-    my $query = cql_target($host, $port, $dbname);
 }
 
 my $xc = irspy_xpath_context($rec);
 my @fields =
     (
+     [ title        => 0, "Name", "e:databaseInfo/e:title",
+       qw() ],
+     [ country      => [
+                       "",
+                       "United States",
+                       "Afghanistan",
+                       "Albania",
+                       "Algeria",
+                       "American Samoa",
+                       "Andorra",
+                       "Angola",
+                       "Anguilla",
+                       "Antarctica",
+                       "Antigua and Barbuda",
+                       "Argentina",
+                       "Armenia",
+                       "Aruba",
+                       "Australia",
+                       "Austria",
+                       "Azerbaijan",
+                       "Bahamas",
+                       "Bahrain",
+                       "Bangladesh",
+                       "Barbados",
+                       "Belarus",
+                       "Belgium",
+                       "Belize",
+                       "Benin",
+                       "Bermuda",
+                       "Bhutan",
+                       "Bolivia",
+                       "Bosnia and Herzegowina",
+                       "Botswana",
+                       "Bouvet Island",
+                       "Brazil",
+                       "British Indian Ocean Terr.",
+                       "Brunei Darussalam",
+                       "Bulgaria",
+                       "Burkina Faso",
+                       "Burundi",
+                       "Cambodia",
+                       "Cameroon",
+                       "Canada",
+                       "Cape Verde",
+                       "Cayman Islands",
+                       "Central African Republic",
+                       "Chad",
+                       "Chile",
+                       "China",
+                       "Christmas Island",
+                       "Cocos (Keeling) Islands",
+                       "Colombia",
+                       "Comoros",
+                       "Congo",
+                       "Cook Islands",
+                       "Costa Rica",
+                       "Cote d'Ivoire",
+                       "Croatia (Hrvatska)",
+                       "Cuba",
+                       "Cyprus",
+                       "Czech Republic",
+                       "Denmark",
+                       "Djibouti",
+                       "Dominica",
+                       "Dominican Republic",
+                       "East Timor",
+                       "Ecuador",
+                       "Egypt",
+                       "El Salvador",
+                       "Equatorial Guinea",
+                       "Eritrea",
+                       "Estonia",
+                       "Ethiopia",
+                       "Falkland Islands/Malvinas",
+                       "Faroe Islands",
+                       "Fiji",
+                       "Finland",
+                       "France",
+                       "France, Metropolitan",
+                       "French Guiana",
+                       "French Polynesia",
+                       "French Southern Terr.",
+                       "Gabon",
+                       "Gambia",
+                       "Georgia",
+                       "Germany",
+                       "Ghana",
+                       "Gibraltar",
+                       "Greece",
+                       "Greenland",
+                       "Grenada",
+                       "Guadeloupe",
+                       "Guam",
+                       "Guatemala",
+                       "Guinea",
+                       "Guinea-Bissau",
+                       "Guyana",
+                       "Haiti",
+                       "Heard & McDonald Is.",
+                       "Honduras",
+                       "Hong Kong",
+                       "Hungary",
+                       "Iceland",
+                       "India",
+                       "Indonesia",
+                       "Iran",
+                       "Iraq",
+                       "Ireland",
+                       "Israel",
+                       "Italy",
+                       "Jamaica",
+                       "Japan",
+                       "Jordan",
+                       "Kazakhstan",
+                       "Kenya",
+                       "Kiribati",
+                       "Korea, North",
+                       "Korea, South",
+                       "Kuwait",
+                       "Kyrgyzstan",
+                       "Lao People's Dem. Rep.",
+                       "Latvia",
+                       "Lebanon",
+                       "Lesotho",
+                       "Liberia",
+                       "Libyan Arab Jamahiriya",
+                       "Liechtenstein",
+                       "Lithuania",
+                       "Luxembourg",
+                       "Macau",
+                       "Macedonia",
+                       "Madagascar",
+                       "Malawi",
+                       "Malaysia",
+                       "Maldives",
+                       "Mali",
+                       "Malta",
+                       "Marshall Islands",
+                       "Martinique",
+                       "Mauritania",
+                       "Mauritius",
+                       "Mayotte",
+                       "Mexico",
+                       "Micronesia",
+                       "Moldova",
+                       "Monaco",
+                       "Mongolia",
+                       "Montserrat",
+                       "Morocco",
+                       "Mozambique",
+                       "Myanmar",
+                       "Namibia",
+                       "Nauru",
+                       "Nepal",
+                       "Netherlands",
+                       "Netherlands Antilles",
+                       "New Caledonia",
+                       "New Zealand",
+                       "Nicaragua",
+                       "Niger",
+                       "Nigeria",
+                       "Niue",
+                       "Norfolk Island",
+                       "Northern Mariana Is.",
+                       "Norway",
+                       "Oman",
+                       "Pakistan",
+                       "Palau",
+                       "Panama",
+                       "Papua New Guinea",
+                       "Paraguay",
+                       "Peru",
+                       "Philippines",
+                       "Pitcairn",
+                       "Poland",
+                       "Portugal",
+                       "Puerto Rico",
+                       "Qatar",
+                       "Reunion",
+                       "Romania",
+                       "Russian Federation",
+                       "Rwanda",
+                       "S.Georgia & S.Sandwich Is.",
+                       "Saint Kitts and Nevis",
+                       "Saint Lucia",
+                       "Samoa",
+                       "San Marino",
+                       "Sao Tome & Principe",
+                       "Saudi Arabia",
+                       "Senegal",
+                       "Seychelles",
+                       "Sierra Leone",
+                       "Singapore",
+                       "Slovakia (Slovak Republic)",
+                       "Slovenia",
+                       "Solomon Islands",
+                       "Somalia",
+                       "South Africa",
+                       "Spain",
+                       "Sri Lanka",
+                       "St. Helena",
+                       "St. Pierre & Miquelon",
+                       "St. Vincent & Grenadines",
+                       "Sudan",
+                       "Suriname",
+                       "Svalbard & Jan Mayen Is.",
+                       "Swaziland",
+                       "Sweden",
+                       "Switzerland",
+                       "Syrian Arab Republic",
+                       "Taiwan",
+                       "Tajikistan",
+                       "Tanzania",
+                       "Thailand",
+                       "Togo",
+                       "Tokelau",
+                       "Tonga",
+                       "Trinidad and Tobago",
+                       "Tunisia",
+                       "Turkey",
+                       "Turkmenistan",
+                       "Turks & Caicos Islands",
+                       "Tuvalu",
+                       "U.S. Minor Outlying Is.",
+                       "Uganda",
+                       "Ukraine",
+                       "United Arab Emirates",
+                       "United Kingdom",
+                       "Uruguay",
+                       "Uzbekistan",
+                       "Vanuatu",
+                       "Vatican (Holy See)",
+                       "Venezuela",
+                       "Viet Nam",
+                       "Virgin Islands (British)",
+                       "Virgin Islands (U.S.)",
+                       "Wallis & Futuna Is.",
+                       "Western Sahara",
+                       "Yemen",
+                       "Yugoslavia",
+                       "Zaire",
+                       "Zambia",
+                       "Zimbabwe",
+                        ],
+       "Country", "i:status/i:country" ],
      [ protocol     => [ qw(Z39.50 SRW SRU SRW/U) ],
        "Protocol", "e:serverInfo/\@protocol" ],
      [ host         => 0, "Host", "e:serverInfo/e:host" ],
      [ port         => 0, "Port", "e:serverInfo/e:port" ],
      [ dbname       => 0, "Database Name", "e:serverInfo/e:database",
        qw(e:host e:port) ],
-     [ type         => [ qw(Academic Public Corporate Special National Education Other) ],
+     [ type         => [ "", qw(Academic Public Corporate Special National Education Other) ],
        "Type of Library", "i:status/i:libraryType" ],
-     [ country      => 0, "Country", "i:status/i:country" ],
      [ username     => 0, "Username (if needed)", "e:serverInfo/e:authentication/e:user",
        qw() ],
      [ password     => 0, "Password (if needed)", "e:serverInfo/e:authentication/e:password",
        qw(e:user) ],
-     [ title        => 0, "Title", "e:databaseInfo/e:title",
-       qw() ],
      [ description  => 5, "Description", "e:databaseInfo/e:description",
        qw(e:title) ],
      [ author       => 0, "Author", "e:databaseInfo/e:author",
@@ -62,7 +345,200 @@ my @fields =
        qw(e:title e:description) ],
      [ history      => 5, "History", "e:databaseInfo/e:history",
        qw(e:title e:description) ],
-     [ language     => 0, "Language of Records", "e:databaseInfo/e:langUsage",
+     [ language     => [
+# This list was produced by feeding
+#      http://www.loc.gov/standards/iso639-2/ISO-639-2_values_8bits.txt
+# through the filter
+#      awk -F'|' '$3 {print$4}'
+# and shortening some of the longer names by hand
+                       "",
+                       "English",
+                       "Afar",
+                       "Abkhazian",
+                       "Afrikaans",
+                       "Akan",
+                       "Albanian",
+                       "Amharic",
+                       "Arabic",
+                       "Aragonese",
+                       "Armenian",
+                       "Assamese",
+                       "Avaric",
+                       "Avestan",
+                       "Aymara",
+                       "Azerbaijani",
+                       "Bashkir",
+                       "Bambara",
+                       "Basque",
+                       "Belarusian",
+                       "Bengali",
+                       "Bihari",
+                       "Bislama",
+                       "Bosnian",
+                       "Breton",
+                       "Bulgarian",
+                       "Burmese",
+                       "Catalan; Valencian",
+                       "Chamorro",
+                       "Chechen",
+                       "Chinese",
+                       "Church Slavic; Old Slavonic",
+                       "Chuvash",
+                       "Cornish",
+                       "Corsican",
+                       "Cree",
+                       "Czech",
+                       "Danish",
+                       "Divehi; Dhivehi; Maldivian",
+                       "Dutch; Flemish",
+                       "Dzongkha",
+                       "Esperanto",
+                       "Estonian",
+                       "Ewe",
+                       "Faroese",
+                       "Fijian",
+                       "Finnish",
+                       "French",
+                       "Western Frisian",
+                       "Fulah",
+                       "Georgian",
+                       "German",
+                       "Gaelic; Scottish Gaelic",
+                       "Irish",
+                       "Galician",
+                       "Manx",
+                       "Greek, Modern (1453-)",
+                       "Guarani",
+                       "Gujarati",
+                       "Haitian; Haitian Creole",
+                       "Hausa",
+                       "Hebrew",
+                       "Herero",
+                       "Hindi",
+                       "Hiri Motu",
+                       "Hungarian",
+                       "Igbo",
+                       "Icelandic",
+                       "Ido",
+                       "Sichuan Yi",
+                       "Inuktitut",
+                       "Interlingue",
+                       "Interlingua",
+                       "Indonesian",
+                       "Inupiaq",
+                       "Italian",
+                       "Javanese",
+                       "Japanese",
+                       "Kalaallisut; Greenlandic",
+                       "Kannada",
+                       "Kashmiri",
+                       "Kanuri",
+                       "Kazakh",
+                       "Khmer",
+                       "Kikuyu; Gikuyu",
+                       "Kinyarwanda",
+                       "Kirghiz",
+                       "Komi",
+                       "Kongo",
+                       "Korean",
+                       "Kuanyama; Kwanyama",
+                       "Kurdish",
+                       "Lao",
+                       "Latin",
+                       "Latvian",
+                       "Limburgan; Limburger; Limburgish",
+                       "Lingala",
+                       "Lithuanian",
+                       "Luxembourgish; Letzeburgesch",
+                       "Luba-Katanga",
+                       "Ganda",
+                       "Macedonian",
+                       "Marshallese",
+                       "Malayalam",
+                       "Maori",
+                       "Marathi",
+                       "Malay",
+                       "Malagasy",
+                       "Maltese",
+                       "Moldavian",
+                       "Mongolian",
+                       "Nauru",
+                       "Navajo; Navaho",
+                       "Ndebele, South; South Ndebele",
+                       "Ndebele, North; North Ndebele",
+                       "Ndonga",
+                       "Nepali",
+                       "Norwegian Nynorsk",
+                       "Norwegian Bokmål",
+                       "Norwegian",
+                       "Chichewa; Chewa; Nyanja",
+                       "Occitan (post 1500); Provençal",
+                       "Ojibwa",
+                       "Oriya",
+                       "Oromo",
+                       "Ossetian; Ossetic",
+                       "Panjabi; Punjabi",
+                       "Persian",
+                       "Pali",
+                       "Polish",
+                       "Portuguese",
+                       "Pushto",
+                       "Quechua",
+                       "Raeto-Romance",
+                       "Romanian",
+                       "Rundi",
+                       "Russian",
+                       "Sango",
+                       "Sanskrit",
+                       "Serbian",
+                       "Croatian",
+                       "Sinhala; Sinhalese",
+                       "Slovak",
+                       "Slovenian",
+                       "Northern Sami",
+                       "Samoan",
+                       "Shona",
+                       "Sindhi",
+                       "Somali",
+                       "Sotho, Southern",
+                       "Spanish; Castilian",
+                       "Sardinian",
+                       "Swati",
+                       "Sundanese",
+                       "Swahili",
+                       "Swedish",
+                       "Tahitian",
+                       "Tamil",
+                       "Tatar",
+                       "Telugu",
+                       "Tajik",
+                       "Tagalog",
+                       "Thai",
+                       "Tibetan",
+                       "Tigrinya",
+                       "Tonga (Tonga Islands)",
+                       "Tswana",
+                       "Tsonga",
+                       "Turkmen",
+                       "Turkish",
+                       "Twi",
+                       "Uighur; Uyghur",
+                       "Ukrainian",
+                       "Urdu",
+                       "Uzbek",
+                       "Venda",
+                       "Vietnamese",
+                       "Volapük",
+                       "Welsh",
+                       "Walloon",
+                       "Wolof",
+                       "Xhosa",
+                       "Yiddish",
+                       "Yoruba",
+                       "Zhuang; Chuang",
+                       "Zulu",
+                       ],
+       "Language of Records", "e:databaseInfo/e:langUsage",
        qw(e:title e:description) ],
      [ restrictions => 2, "Restrictions", "e:databaseInfo/e:restrictions",
        qw(e:title e:description) ],
@@ -70,29 +546,32 @@ my @fields =
        qw(e:title e:description) ],
      );
 
-my $nchanges = 0;
-my $update = $r->param("update");
-if ($update) {
-    # Update record with submitted data
-    my %fieldsByKey = map { ( $_->[0], $_) } @fields;
-    my %data;
-    foreach my $key ($r->param()) {
-       next if grep { $key eq $_ } qw(id update new copy);
-       $data{$key} = $r->param($key);
-    }
-
-    $nchanges = modify_xml_document($xc, \%fieldsByKey, \%data);
-    if ($nchanges) {
-       ### Set e:metaInfo/e:dateModified
-    }
-    ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode());
+# Update record with submitted data
+my %fieldsByKey = map { ( $_->[0], $_) } @fields;
+my %data;
+foreach my $key ($r->param()) {
+    next if grep { $key eq $_ } qw(op id update);
+    $data{$key} = $r->param($key);
+}
+my @changedFields = modify_xml_document($xc, \%fieldsByKey, \%data);
+if ($update && @changedFields) {
+    my @x = modify_xml_document($xc, { dateModified =>
+                                          [ dateModified => 0,
+                                            "Data/time modified",
+                                            "e:metaInfo/e:dateModified" ] },
+                               { dateModified => isodate(time()) });
+    die "Didn't set dateModified!" if !@x;
+    ZOOM::IRSpy::_really_rewrite_record($conn, $xc->getContextNode(), $id);
 }
+
 </%perl>
  <h2><% xml_encode($xc->find("e:databaseInfo/e:title"), "[Untitled]") %></h2>
-% if ($nchanges) {
+% if ($update && @changedFields) {
+%     my $nchanges = @changedFields;
  <p style="font-weight: bold">
-  The record has been <% $r->param("new") ? "created" : "updated" %>.<br/>
-  Changed <% $nchanges %> field<% $nchanges == 1 ? "" : "s" %>.
+  The record has been <% $op ne "edit" ? "created" : "updated" %>.<br/>
+  Changed <% $nchanges %> field<% $nchanges == 1 ? "" : "s" %>:
+  <% join(", ", map { xml_encode($_->[2]) } @changedFields) %>.
  </p>
 % }
  <form method="get" action="">
@@ -104,38 +583,40 @@ foreach my $ref (@fields) {
    <tr>
     <th><% $caption %></th>
     <td>
-% my $rawdata = $xc->findvalue($xpath);
-% my $data = xml_encode($rawdata, "");
+% my $rawval = $xc->findvalue($xpath);
+% my $val = xml_encode($rawval, "");
 % if (ref $nlines) {
      <select name="<% $name %>" size="1">
-%     foreach my $val (@$nlines) {
-      <option value="<% $val %>"
-% print ' selected="selected"' if $rawdata eq $val;
-       ><% $val %></option>
+%     foreach my $option (@$nlines) {
+      <option value="<% xml_encode($option) %>"<%
+       ($rawval eq $option ? ' selected="selected"' : "")
+       %>><% xml_encode($option) %></option>
 %     }
      </select>
 % } elsif ($nlines) {
-     <textarea name="<% $name %>" rows="<% $nlines %>" cols="51"><% $data %></textarea>
+     <textarea name="<% $name %>" rows="<% $nlines %>" cols="51"><% $val %></textarea>
 % } else {
-     <input name="<% $name %>" type="text" size="60" value="<% $data %>"/>
+     <input name="<% $name %>" type="text" size="60" value="<% $val %>"/>
 % }
     </td>
+    <td>
+     <& /help/link.mc, help => "edit/$name" &>
+    </td>
    </tr>
 %   }
    <tr>
     <td align="right" colspan="2">
      <input type="submit" name="update" value="Update"/>
+     <input type="hidden" name="op" value="<% xml_encode($op) %>"/>
 % if (defined $id) {
      <input type="hidden" name="id" value="<% xml_encode($id) %>"/>
-% } else {
-     <input type="hidden" name="new" value="1"/>
 % }
     </td>
    </tr>
   </table>
  </form>
 <%perl>
-    if ($nchanges && 0) {
+    if (@changedFields && 0) {
        my $x = $xc->getContextNode()->toString();
        $x = xml_encode($x);
        #$x =~ s/$/<br\/>/gm;