Bug 20538: Remove the need of writing [% KOHA_VERSION %] everywhere
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / upload-images.tt
1 [% USE Asset %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Tools &rsaquo; Upload images</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 <style type="text/css">
7     #fileuploadstatus,#fileuploadfailed,#jobpanel,#jobstatus,#jobfailed { display : none; }
8 </style>
9 </head>
10
11 <body id="tools_upload-images" class="tools">
12 [% INCLUDE 'header.inc' %]
13 [% INCLUDE 'cat-search.inc' %]
14
15 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; [% IF ( uploadimage ) %]<a href="/cgi-bin/koha/tools/upload-cover-image.pl">Upload local cover image</a> &rsaquo; Upload results[% ELSE %]Upload local cover image[% END %]</div>
16
17 <div id="doc3" class="yui-t2">
18
19    <div id="bd">
20         <div id="yui-main">
21         <div class="yui-b">
22
23 <h1>Upload local cover image</h1>
24 [% IF ( uploadimage ) %]
25 <p>Image upload results :</p>
26 <ul>
27     <li>[% total %] images found</li>
28     [% IF ( error ) %]
29     <div class="dialog alert">
30     [% IF ( error == 'UZIPFAIL' ) %]<p><b>Failed to unzip archive.<br />Please ensure you are uploading a valid zip file and try again.</b></p>
31     [% ELSIF ( error == 'OPNLINK' ) %]<p><b>Cannot open folder index (idlink.txt or datalink.txt) to read.<br />Please verify that it exists.</b></p>
32     [% ELSIF ( error == 'OPNIMG' ) %]<p><b>Cannot process file as an image.<br />Please ensure you only upload GIF, JPEG, PNG, or XPM images.</b></p>
33     [% ELSIF ( error == 'DELERR' ) %]<p><b>Unrecognized or missing field delimiter.<br />Please verify that you are using either a single quote or a tab.</b></p>
34     [% ELSIF ( error == 'DBERR' ) %]<p><b>Unable to save image to database.</b></p>
35     [% ELSE %]<p><b>An unknown error has occurred.<br />Please review the error log for more details.</b></p>[% END %]
36     </div>
37     </li>
38     [% END %]
39     <li><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">View final record</a></li>
40         <li><a href="/cgi-bin/koha/tools/tools-home.pl">Back</a></li>
41 </ul>
42 <hr />
43 [% END %]
44 <ul>
45         <li>Select an image file or ZIP file to upload. The tool will accept images in GIF, JPEG, PNG, and XPM formats.</li>
46 </ul>
47 <form method="post" action="/cgi-bin/koha/tools/upload-cover-image.pl" id="uploadfile" enctype="multipart/form-data">
48 <fieldset class="rows" id="uploadform">
49 <legend>Upload images</legend>
50 <ol>
51         <li>
52         <div id="fileuploadform">
53         <label for="fileToUpload" class="required">Select the file to upload: </label>
54         <input type="file" id="fileToUpload" name="fileToUpload" required="required" class="required" />
55     <span class="required">Required</span>
56         </div>  </li>
57 </ol>
58     <fieldset class="action"><button class="submit btn btn-default btn-sm">Upload file</button></fieldset>
59 </fieldset>
60
61     <div id="uploadpanel">
62         <div id="fileuploadstatus" class="progress_panel">Upload progress:
63             <progress max="100" value="0" id="fileuploadprogress">
64             </progress>
65             <span class="fileuploadpercent">0</span>%
66         </div>
67         <div id="fileuploadfailed"></div>
68     </div>
69 </form>
70
71     <form method="post" id="processfile" action="/cgi-bin/koha/tools/upload-cover-image.pl" enctype="multipart/form-data">
72 <fieldset class="rows">
73         <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
74         <input type="hidden" name="runinbackground" id="runinbackground" value="" />
75         <input type="hidden" name="completedJobID" id="completedJobID" value="" />
76         </fieldset>
77   <fieldset class="rows">
78     <legend>File type</legend>
79     <ol>
80       <li class="radio">
81         [% IF (filetype != 'image' ) %]<input type="radio" id="zipfile" name="filetype" value="zip" checked="checked" />[% ELSE %]<input type="radio" id="zipfile" name="filetype" value="zip" />[% END %]
82         <label for="zipfile">ZIP file</label>
83       </li>
84       <li class="radio">
85         [% IF (filetype == 'image' ) %]<input type="radio" id="image" name="filetype" value="image" checked="checked" />[% ELSE %]<input type="radio" id="image" name="filetype" value="image" />[% END %]
86         <label for="image">Image file</label>
87       </li>
88       <li class="radio">
89         [% IF ( filetype == 'image' ) %]<span id="bibnum">[% ELSE %]<span id="bibnum" style="display: none">[% END %]<label for="biblionumber">Enter cover biblionumber: </label><input type="text" id="biblionumber" name="biblionumber" value="[% biblionumber %]" size="15" /></span>
90       </li>
91     </ol>
92   </fieldset>
93   <fieldset class="rows">
94     <legend>Options</legend>
95     <ol>
96       <li class="checkbox">
97         [% IF AllowMultipleCovers == 0 %]<input type="checkbox" id="replace" name="replace" checked="checked" disabled="disabled" value="1" />[% ELSE %]<input type="checkbox" id="replace" name="replace" value="1" />[% END %]
98         <label for="replace">Replace existing covers</label>
99       </li>
100     </ol>
101   </fieldset>
102   <fieldset class="action"><button type="submit" class="btn btn-default btn-sm">Process images</button></fieldset>
103 </form>
104
105 </div>
106 </div>
107 <div class="yui-b">
108 [% INCLUDE 'tools-menu.inc' %]
109 </div>
110 </div>
111
112 [% MACRO jsinclude BLOCK %]
113     [% Asset.js("js/tools-menu.js") %]
114     [% Asset.js("js/background-job-progressbar.js") %]
115     [% Asset.js("js/file-upload.js") %]
116     <script type="text/javascript">
117         function StartUpload() {
118             if( $('#fileToUpload').prop('files').length == 0 ) return;
119             $('#uploadform button.submit').prop('disabled',true);
120             $("#fileuploadstatus").show();
121             $("#uploadedfileid").val('');
122             xhr= AjaxUpload( $('#fileToUpload'), $('#fileuploadprogress'), 'temp=1', cbUpload );
123         }
124         function cbUpload( status, fileid, errors ) {
125             if( status=='done' ) {
126                 $("#uploadedfileid").val( fileid );
127                 $('#fileToUpload').prop('disabled',true);
128                 $("#processfile").show();
129             } else {
130                 var errMsgs = [ _("Error code 0 not used"), _("File already exists"), _("Directory is not writeable"), _("Root directory for uploads not defined"), _("Temporary directory for uploads not defined") ];
131                 var errCode = errors[$('#fileToUpload').prop('files')[0].name].code;
132                 $("#fileuploadstatus").hide();
133                 $("#fileuploadfailed").show();
134                 $("#fileuploadfailed").text( _("Upload status: ") +
135                     ( status=='failed'? _("Failed") + " - (" + errCode + ") " + errMsgs[errCode]:
136                     ( status=='denied'? _("Denied"): status ))
137                 );
138                 $("#processfile").hide();
139             }
140         }
141         $(document).ready(function(){
142             $("#processfile").hide();
143             $("#zipfile").click(function(){
144                 $("#bibnum").hide();
145             });
146             $("#image").click(function(){
147                 $("#bibnum").show();
148             });
149             $("#uploadfile").validate({
150                 submitHandler: function(form) {
151                     StartUpload();
152                     return false;
153                 }
154             });
155         });
156     </script>
157 [% END %]
158
159 [% INCLUDE 'intranet-bottom.inc' %]