]> git.ipfire.org Git - thirdparty/cups.git/blame - cgi-bin/admin.c
Merge changes from CUPS 1.7svn-r10629.
[thirdparty/cups.git] / cgi-bin / admin.c
CommitLineData
ef416fc2 1/*
58dc1933 2 * "$Id: admin.c 8029 2008-10-08 21:07:45Z mike $"
ef416fc2 3 *
0268488e 4 * Administration CGI for CUPS.
ef416fc2 5 *
f3c17241 6 * Copyright 2007-2012 by Apple Inc.
f7deaa1a 7 * Copyright 1997-2007 by Easy Software Products.
ef416fc2 8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 *
15 * Contents:
16 *
17 * main() - Main entry for CGI.
58dc1933 18 * choose_device_cb() - Add a device to the device selection page.
f7deaa1a 19 * do_add_rss_subscription() - Add a RSS subscription.
ef416fc2 20 * do_am_class() - Add or modify a class.
21 * do_am_printer() - Add or modify a printer.
f7deaa1a 22 * do_cancel_subscription() - Cancel a subscription.
ef416fc2 23 * do_config_server() - Configure server settings.
749b1e90
MS
24 * do_delete_class() - Delete a class.
25 * do_delete_printer() - Delete a printer.
26 * do_export() - Export printers to Samba.
27 * do_list_printers() - List available printers.
28 * do_menu() - Show the main menu.
ef416fc2 29 * do_set_allowed_users() - Set the allowed/denied users for a queue.
58dc1933 30 * do_set_default() - Set the server default printer/class.
323c5de1 31 * do_set_options() - Configure the default options for a queue.
749b1e90
MS
32 * do_set_sharing() - Set printer-is-shared value.
33 * get_option_value() - Return the value of an option.
34 * get_points() - Get a value in points.
ef416fc2 35 */
36
37/*
38 * Include necessary headers...
39 */
40
41#include "cgi-private.h"
757d2cad 42#include <cups/adminutil.h>
aaf19ab0 43#include <cups/ppd.h>
ef416fc2 44#include <errno.h>
fa73b229 45#include <unistd.h>
46#include <fcntl.h>
47#include <sys/wait.h>
749b1e90 48#include <limits.h>
ef416fc2 49
50
f8b3a85b
MS
51/*
52 * Local globals...
53 */
54
55static int current_device = 0; /* Current device shown */
56
57
ef416fc2 58/*
59 * Local functions...
60 */
61
58dc1933
MS
62static void choose_device_cb(const char *device_class,
63 const char *device_id, const char *device_info,
64 const char *device_make_and_model,
65 const char *device_uri,
66 const char *device_location,
f8b3a85b 67 const char *title);
f7deaa1a 68static void do_add_rss_subscription(http_t *http);
fa73b229 69static void do_am_class(http_t *http, int modify);
70static void do_am_printer(http_t *http, int modify);
f7deaa1a 71static void do_cancel_subscription(http_t *http);
fa73b229 72static void do_config_server(http_t *http);
73static void do_delete_class(http_t *http);
74static void do_delete_printer(http_t *http);
75static void do_export(http_t *http);
323c5de1 76static void do_list_printers(http_t *http);
fa73b229 77static void do_menu(http_t *http);
fa73b229 78static void do_set_allowed_users(http_t *http);
58dc1933
MS
79static void do_set_default(http_t *http);
80static void do_set_options(http_t *http, int is_class);
fa73b229 81static void do_set_sharing(http_t *http);
749b1e90
MS
82static char *get_option_value(ppd_file_t *ppd, const char *name,
83 char *buffer, size_t bufsize);
84static double get_points(double number, const char *uval);
ef416fc2 85
86
87/*
88 * 'main()' - Main entry for CGI.
89 */
90
91int /* O - Exit status */
92main(int argc, /* I - Number of command-line arguments */
93 char *argv[]) /* I - Command-line arguments */
94{
ef416fc2 95 http_t *http; /* Connection to the server */
96 const char *op; /* Operation name */
97
98
ef416fc2 99 /*
100 * Connect to the HTTP server...
101 */
102
bd7854cb 103 fputs("DEBUG: admin.cgi started...\n", stderr);
104
ef416fc2 105 http = httpConnectEncrypt(cupsServer(), ippPort(), cupsEncryption());
106
a4d04587 107 if (!http)
108 {
109 perror("ERROR: Unable to connect to cupsd");
f301802f 110 fprintf(stderr, "DEBUG: cupsServer()=\"%s\"\n",
111 cupsServer() ? cupsServer() : "(null)");
a4d04587 112 fprintf(stderr, "DEBUG: ippPort()=%d\n", ippPort());
113 fprintf(stderr, "DEBUG: cupsEncryption()=%d\n", cupsEncryption());
114 exit(1);
115 }
116
bd7854cb 117 fprintf(stderr, "DEBUG: http=%p\n", http);
118
ef416fc2 119 /*
120 * Set the web interface section...
121 */
122
123 cgiSetVariable("SECTION", "admin");
ef55b745 124 cgiSetVariable("REFRESH_PAGE", "");
ef416fc2 125
126 /*
127 * See if we have form data...
128 */
129
0af14961 130 if (!cgiInitialize() || !cgiGetVariable("OP"))
ef416fc2 131 {
132 /*
133 * Nope, send the administration menu...
134 */
135
bd7854cb 136 fputs("DEBUG: No form data, showing main menu...\n", stderr);
137
fa73b229 138 do_menu(http);
ef416fc2 139 }
2e4ff8af 140 else if ((op = cgiGetVariable("OP")) != NULL && cgiIsPOST())
ef416fc2 141 {
142 /*
143 * Do the operation...
144 */
145
bd7854cb 146 fprintf(stderr, "DEBUG: op=\"%s\"...\n", op);
147
0268488e
MS
148 if (!*op)
149 {
150 const char *printer = getenv("PRINTER_NAME"),
151 /* Printer or class name */
152 *server_port = getenv("SERVER_PORT");
153 /* Port number string */
154 int port = atoi(server_port ? server_port : "0");
155 /* Port number */
156 char uri[1024]; /* URL */
157
158 if (printer)
159 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri),
160 getenv("HTTPS") ? "https" : "http", NULL,
161 getenv("SERVER_NAME"), port, "/%s/%s",
162 cgiGetVariable("IS_CLASS") ? "classes" : "printers",
163 printer);
164 else
165 httpAssembleURI(HTTP_URI_CODING_ALL, uri, sizeof(uri),
166 getenv("HTTPS") ? "https" : "http", NULL,
167 getenv("SERVER_NAME"), port, "/admin");
168
169 printf("Location: %s\n\n", uri);
170 }
171 else if (!strcmp(op, "set-allowed-users"))
fa73b229 172 do_set_allowed_users(http);
ef416fc2 173 else if (!strcmp(op, "set-as-default"))
58dc1933 174 do_set_default(http);
ef416fc2 175 else if (!strcmp(op, "set-sharing"))
fa73b229 176 do_set_sharing(http);
355e94dc
MS
177 else if (!strcmp(op, "find-new-printers") ||
178 !strcmp(op, "list-available-printers"))
323c5de1 179 do_list_printers(http);
ef416fc2 180 else if (!strcmp(op, "add-class"))
fa73b229 181 do_am_class(http, 0);
ef416fc2 182 else if (!strcmp(op, "add-printer"))
fa73b229 183 do_am_printer(http, 0);
ef416fc2 184 else if (!strcmp(op, "modify-class"))
fa73b229 185 do_am_class(http, 1);
ef416fc2 186 else if (!strcmp(op, "modify-printer"))
fa73b229 187 do_am_printer(http, 1);
ef416fc2 188 else if (!strcmp(op, "delete-class"))
fa73b229 189 do_delete_class(http);
ef416fc2 190 else if (!strcmp(op, "delete-printer"))
fa73b229 191 do_delete_printer(http);
323c5de1 192 else if (!strcmp(op, "set-class-options"))
193 do_set_options(http, 1);
ef416fc2 194 else if (!strcmp(op, "set-printer-options"))
323c5de1 195 do_set_options(http, 0);
ef416fc2 196 else if (!strcmp(op, "config-server"))
fa73b229 197 do_config_server(http);
198 else if (!strcmp(op, "export-samba"))
199 do_export(http);
f7deaa1a 200 else if (!strcmp(op, "add-rss-subscription"))
201 do_add_rss_subscription(http);
202 else if (!strcmp(op, "cancel-subscription"))
203 do_cancel_subscription(http);
ef416fc2 204 else
205 {
206 /*
749b1e90 207 * Bad operation code - display an error...
ef416fc2 208 */
209
fa73b229 210 cgiStartHTML(cgiText(_("Administration")));
211 cgiCopyTemplateLang("error-op.tmpl");
ef416fc2 212 cgiEndHTML();
213 }
ef416fc2 214 }
2e4ff8af
MS
215 else if (op && !strcmp(op, "redirect"))
216 {
ef55b745 217 const char *url; /* Redirection URL... */
2e4ff8af
MS
218 char prefix[1024]; /* URL prefix */
219
220
221 if (getenv("HTTPS"))
222 snprintf(prefix, sizeof(prefix), "https://%s:%s",
223 getenv("SERVER_NAME"), getenv("SERVER_PORT"));
224 else
225 snprintf(prefix, sizeof(prefix), "http://%s:%s",
226 getenv("SERVER_NAME"), getenv("SERVER_PORT"));
227
0af14961
MS
228 fprintf(stderr, "DEBUG: redirecting with prefix %s!\n", prefix);
229
2e4ff8af 230 if ((url = cgiGetVariable("URL")) != NULL)
ef55b745
MS
231 {
232 char encoded[1024], /* Encoded URL string */
233 *ptr; /* Pointer into encoded string */
234
235
236 ptr = encoded;
237 if (*url != '/')
238 *ptr++ = '/';
239
240 for (; *url && ptr < (encoded + sizeof(encoded) - 4); url ++)
241 {
242 if (strchr("%@&+ <>#=", *url) || *url < ' ' || *url & 128)
243 {
244 /*
245 * Percent-encode this character; safe because we have at least 4
246 * bytes left in the array...
247 */
248
249 sprintf(ptr, "%%%02X", *url & 255);
250 ptr += 3;
251 }
252 else
253 *ptr++ = *url;
254 }
255
256 *ptr = '\0';
257
258 if (*url)
259 {
260 /*
261 * URL was too long, just redirect to the admin page...
262 */
263
264 printf("Location: %s/admin\n\n", prefix);
265 }
266 else
267 {
268 /*
269 * URL is OK, redirect there...
270 */
271
272 printf("Location: %s%s\n\n", prefix, encoded);
273 }
274 }
2e4ff8af
MS
275 else
276 printf("Location: %s/admin\n\n", prefix);
277 }
ef416fc2 278 else
279 {
280 /*
749b1e90 281 * Form data but no operation code - display an error...
ef416fc2 282 */
283
fa73b229 284 cgiStartHTML(cgiText(_("Administration")));
285 cgiCopyTemplateLang("error-op.tmpl");
ef416fc2 286 cgiEndHTML();
287 }
288
289 /*
fa73b229 290 * Close the HTTP server connection...
ef416fc2 291 */
292
fa73b229 293 httpClose(http);
ef416fc2 294
295 /*
296 * Return with no errors...
297 */
298
299 return (0);
300}
301
302
58dc1933
MS
303/*
304 * 'choose_device_cb()' - Add a device to the device selection page.
305 */
306
307static void
308choose_device_cb(
309 const char *device_class, /* I - Class */
310 const char *device_id, /* I - 1284 device ID */
311 const char *device_info, /* I - Description */
312 const char *device_make_and_model, /* I - Make and model */
313 const char *device_uri, /* I - Device URI */
314 const char *device_location, /* I - Location */
f8b3a85b 315 const char *title) /* I - Page title */
58dc1933 316{
f8b3a85b
MS
317 /*
318 * For modern browsers, start a multi-part page so we can show that something
319 * is happening. Non-modern browsers just get everything at the end...
320 */
321
322 if (current_device == 0 && cgiSupportsMultipart())
323 {
324 cgiStartMultipart();
325 cgiStartHTML(title);
326 cgiCopyTemplateLang("choose-device.tmpl");
327 cgiEndHTML();
328 fflush(stdout);
329 }
330
331
58dc1933
MS
332 /*
333 * Add the device to the array...
334 */
335
f8b3a85b
MS
336 cgiSetArray("device_class", current_device, device_class);
337 cgiSetArray("device_id", current_device, device_id);
338 cgiSetArray("device_info", current_device, device_info);
339 cgiSetArray("device_make_and_model", current_device, device_make_and_model);
340 cgiSetArray("device_uri", current_device, device_uri);
341 cgiSetArray("device_location", current_device, device_location);
58dc1933 342
f8b3a85b 343 current_device ++;
58dc1933
MS
344}
345
346
f7deaa1a 347/*
348 * 'do_add_rss_subscription()' - Add a RSS subscription.
349 */
350
351static void
352do_add_rss_subscription(http_t *http) /* I - HTTP connection */
353{
354 ipp_t *request, /* IPP request data */
355 *response; /* IPP response data */
356 char rss_uri[1024]; /* RSS notify-recipient URI */
357 int num_events; /* Number of events */
358 const char *events[12], /* Subscribed events */
359 *subscription_name, /* Subscription name */
360 *printer_uri, /* Printer URI */
361 *ptr, /* Pointer into name */
362 *user; /* Username */
363 int max_events; /* Maximum number of events */
364
365
366 /*
367 * See if we have all of the required information...
368 */
369
370 subscription_name = cgiGetVariable("SUBSCRIPTION_NAME");
371 printer_uri = cgiGetVariable("PRINTER_URI");
372 num_events = 0;
373
374 if (cgiGetVariable("EVENT_JOB_CREATED"))
375 events[num_events ++] = "job-created";
376 if (cgiGetVariable("EVENT_JOB_COMPLETED"))
377 events[num_events ++] = "job-completed";
378 if (cgiGetVariable("EVENT_JOB_STOPPED"))
379 events[num_events ++] = "job-stopped";
380 if (cgiGetVariable("EVENT_JOB_CONFIG_CHANGED"))
381 events[num_events ++] = "job-config-changed";
382 if (cgiGetVariable("EVENT_PRINTER_STOPPED"))
383 events[num_events ++] = "printer-stopped";
384 if (cgiGetVariable("EVENT_PRINTER_ADDED"))
385 events[num_events ++] = "printer-added";
386 if (cgiGetVariable("EVENT_PRINTER_MODIFIED"))
387 events[num_events ++] = "printer-modified";
388 if (cgiGetVariable("EVENT_PRINTER_DELETED"))
389 events[num_events ++] = "printer-deleted";
390 if (cgiGetVariable("EVENT_SERVER_STARTED"))
391 events[num_events ++] = "server-started";
392 if (cgiGetVariable("EVENT_SERVER_STOPPED"))
393 events[num_events ++] = "server-stopped";
394 if (cgiGetVariable("EVENT_SERVER_RESTARTED"))
395 events[num_events ++] = "server-restarted";
396 if (cgiGetVariable("EVENT_SERVER_AUDIT"))
397 events[num_events ++] = "server-audit";
398
399 if ((ptr = cgiGetVariable("MAX_EVENTS")) != NULL)
400 max_events = atoi(ptr);
401 else
402 max_events = 0;
403
404 if (!subscription_name || !printer_uri || !num_events ||
405 max_events <= 0 || max_events > 9999)
406 {
407 /*
408 * Don't have everything we need, so get the available printers
409 * and classes and (re)show the add page...
410 */
411
ef55b745
MS
412 if (cgiGetVariable("EVENT_JOB_CREATED"))
413 cgiSetVariable("EVENT_JOB_CREATED", "CHECKED");
414 if (cgiGetVariable("EVENT_JOB_COMPLETED"))
415 cgiSetVariable("EVENT_JOB_COMPLETED", "CHECKED");
416 if (cgiGetVariable("EVENT_JOB_STOPPED"))
417 cgiSetVariable("EVENT_JOB_STOPPED", "CHECKED");
418 if (cgiGetVariable("EVENT_JOB_CONFIG_CHANGED"))
419 cgiSetVariable("EVENT_JOB_CONFIG_CHANGED", "CHECKED");
420 if (cgiGetVariable("EVENT_PRINTER_STOPPED"))
421 cgiSetVariable("EVENT_PRINTER_STOPPED", "CHECKED");
422 if (cgiGetVariable("EVENT_PRINTER_ADDED"))
423 cgiSetVariable("EVENT_PRINTER_ADDED", "CHECKED");
424 if (cgiGetVariable("EVENT_PRINTER_MODIFIED"))
425 cgiSetVariable("EVENT_PRINTER_MODIFIED", "CHECKED");
426 if (cgiGetVariable("EVENT_PRINTER_DELETED"))
427 cgiSetVariable("EVENT_PRINTER_DELETED", "CHECKED");
428 if (cgiGetVariable("EVENT_SERVER_STARTED"))
429 cgiSetVariable("EVENT_SERVER_STARTED", "CHECKED");
430 if (cgiGetVariable("EVENT_SERVER_STOPPED"))
431 cgiSetVariable("EVENT_SERVER_STOPPED", "CHECKED");
432 if (cgiGetVariable("EVENT_SERVER_RESTARTED"))
433 cgiSetVariable("EVENT_SERVER_RESTARTED", "CHECKED");
434 if (cgiGetVariable("EVENT_SERVER_AUDIT"))
435 cgiSetVariable("EVENT_SERVER_AUDIT", "CHECKED");
436
f7deaa1a 437 request = ippNewRequest(CUPS_GET_PRINTERS);
438 response = cupsDoRequest(http, request, "/");
439
440 cgiSetIPPVars(response, NULL, NULL, NULL, 0);
441
442 ippDelete(response);
443
444 cgiStartHTML(cgiText(_("Add RSS Subscription")));
445
446 cgiCopyTemplateLang("add-rss-subscription.tmpl");
447
448 cgiEndHTML();
449 return;
450 }
451
839a51c8
MS
452 /*
453 * Make sure we have a username...
454 */
455
456 if ((user = getenv("REMOTE_USER")) == NULL)
457 {
458 puts("Status: 401\n");
459 exit(0);
460 }
461
f7deaa1a 462 /*
463 * Validate the subscription name...
464 */
465
466 for (ptr = subscription_name; *ptr; ptr ++)
467 if ((*ptr >= 0 && *ptr <= ' ') || *ptr == 127 || *ptr == '/' ||
468 *ptr == '?' || *ptr == '#')
469 break;
470
471 if (*ptr)
472 {
473 cgiSetVariable("ERROR",
474 cgiText(_("The subscription name may not "
475 "contain spaces, slashes (/), question marks (?), "
476 "or the pound sign (#).")));
477 cgiStartHTML(_("Add RSS Subscription"));
478 cgiCopyTemplateLang("error.tmpl");
479 cgiEndHTML();
480 return;
481 }
482
483 /*
484 * Add the subscription...
485 */
486
487 ptr = subscription_name + strlen(subscription_name) - 4;
488 if (ptr < subscription_name || strcmp(ptr, ".rss"))
489 httpAssembleURIf(HTTP_URI_CODING_ALL, rss_uri, sizeof(rss_uri), "rss",
490 NULL, NULL, 0, "/%s.rss?max_events=%d", subscription_name,
491 max_events);
492 else
493 httpAssembleURIf(HTTP_URI_CODING_ALL, rss_uri, sizeof(rss_uri), "rss",
494 NULL, NULL, 0, "/%s?max_events=%d", subscription_name,
495 max_events);
496
497 request = ippNewRequest(IPP_CREATE_PRINTER_SUBSCRIPTION);
498
88f9aafc 499 if (!_cups_strcasecmp(printer_uri, "#ALL#"))
f7deaa1a 500 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
501 NULL, "ipp://localhost/");
502 else
503 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
504 NULL, printer_uri);
505
f7deaa1a 506 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "requesting-user-name",
507 NULL, user);
508
7594b224 509 ippAddString(request, IPP_TAG_SUBSCRIPTION, IPP_TAG_URI,
510 "notify-recipient-uri", NULL, rss_uri);
f7deaa1a 511 ippAddStrings(request, IPP_TAG_SUBSCRIPTION, IPP_TAG_KEYWORD, "notify-events",
512 num_events, NULL, events);
513 ippAddInteger(request, IPP_TAG_SUBSCRIPTION, IPP_TAG_INTEGER,
514 "notify-lease-duration", 0);
515
516 ippDelete(cupsDoRequest(http, request, "/"));
517
355e94dc
MS
518 if (cupsLastError() == IPP_NOT_AUTHORIZED)
519 {
520 puts("Status: 401\n");
521 exit(0);
522 }
523 else if (cupsLastError() > IPP_OK_CONFLICT)
f7deaa1a 524 {
525 cgiStartHTML(_("Add RSS Subscription"));
f3c17241 526 cgiShowIPPError(_("Unable to add RSS subscription"));
f7deaa1a 527 }
528 else
529 {
530 /*
531 * Redirect successful updates back to the admin page...
532 */
533
534 cgiSetVariable("refresh_page", "5;URL=/admin");
535 cgiStartHTML(_("Add RSS Subscription"));
536 cgiCopyTemplateLang("subscription-added.tmpl");
537 }
538
539 cgiEndHTML();
540}
541
542
ef416fc2 543/*
544 * 'do_am_class()' - Add or modify a class.
545 */
546
547static void
fa73b229 548do_am_class(http_t *http, /* I - HTTP connection */
549 int modify) /* I - Modify the printer? */
ef416fc2 550{
551 int i, j; /* Looping vars */
552 int element; /* Element number */
553 int num_printers; /* Number of printers */
554 ipp_t *request, /* IPP request */
555 *response; /* IPP response */
556 ipp_attribute_t *attr; /* member-uris attribute */
ef416fc2 557 char uri[HTTP_MAX_URI]; /* Device or printer URI */
558 const char *name, /* Pointer to class name */
ef55b745 559 *op, /* Operation name */
ef416fc2 560 *ptr; /* Pointer to CGI variable */
561 const char *title; /* Title of page */
562 static const char * const pattrs[] = /* Requested printer attributes */
563 {
564 "member-names",
565 "printer-info",
566 "printer-location"
567 };
568
569
fa73b229 570 title = cgiText(modify ? _("Modify Class") : _("Add Class"));
ef55b745 571 op = cgiGetVariable("OP");
ef416fc2 572 name = cgiGetVariable("PRINTER_NAME");
573
574 if (cgiGetVariable("PRINTER_LOCATION") == NULL)
575 {
576 /*
577 * Build a CUPS_GET_PRINTERS request, which requires the
578 * following attributes:
579 *
580 * attributes-charset
581 * attributes-natural-language
ef416fc2 582 */
583
fa73b229 584 request = ippNewRequest(CUPS_GET_PRINTERS);
ef416fc2 585
acb056cb
MS
586 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM, "printer-type",
587 CUPS_PRINTER_LOCAL);
588 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM, "printer-type-mask",
a2326b5b 589 CUPS_PRINTER_CLASS | CUPS_PRINTER_REMOTE);
acb056cb 590
ef416fc2 591 /*
592 * Do the request and get back a response...
593 */
594
ef55b745
MS
595 cgiClearVariables();
596 if (op)
597 cgiSetVariable("OP", op);
598 if (name)
599 cgiSetVariable("PRINTER_NAME", name);
600
ef416fc2 601 if ((response = cupsDoRequest(http, request, "/")) != NULL)
602 {
603 /*
604 * Create MEMBER_URIS and MEMBER_NAMES arrays...
605 */
606
607 for (element = 0, attr = response->attrs;
608 attr != NULL;
609 attr = attr->next)
610 if (attr->name && !strcmp(attr->name, "printer-uri-supported"))
611 {
612 if ((ptr = strrchr(attr->values[0].string.text, '/')) != NULL &&
88f9aafc 613 (!name || _cups_strcasecmp(name, ptr + 1)))
ef416fc2 614 {
615 /*
616 * Don't show the current class...
617 */
618
619 cgiSetArray("MEMBER_URIS", element, attr->values[0].string.text);
620 element ++;
621 }
622 }
623
624 for (element = 0, attr = response->attrs;
625 attr != NULL;
626 attr = attr->next)
627 if (attr->name && !strcmp(attr->name, "printer-name"))
628 {
88f9aafc 629 if (!name || _cups_strcasecmp(name, attr->values[0].string.text))
ef416fc2 630 {
631 /*
632 * Don't show the current class...
633 */
634
635 cgiSetArray("MEMBER_NAMES", element, attr->values[0].string.text);
636 element ++;
637 }
638 }
639
640 num_printers = cgiGetSize("MEMBER_URIS");
641
642 ippDelete(response);
643 }
644 else
645 num_printers = 0;
646
647 if (modify)
648 {
649 /*
650 * Build an IPP_GET_PRINTER_ATTRIBUTES request, which requires the
651 * following attributes:
652 *
653 * attributes-charset
654 * attributes-natural-language
655 * printer-uri
656 */
657
fa73b229 658 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
ef416fc2 659
a4d04587 660 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
661 "localhost", 0, "/classes/%s", name);
ef416fc2 662 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
663 NULL, uri);
664
665 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
666 "requested-attributes",
667 (int)(sizeof(pattrs) / sizeof(pattrs[0])),
668 NULL, pattrs);
669
670 /*
671 * Do the request and get back a response...
672 */
673
674 if ((response = cupsDoRequest(http, request, "/")) != NULL)
675 {
480ef0fe 676 if ((attr = ippFindAttribute(response, "member-names",
677 IPP_TAG_NAME)) != NULL)
ef416fc2 678 {
679 /*
680 * Mark any current members in the class...
681 */
682
683 for (j = 0; j < num_printers; j ++)
684 cgiSetArray("MEMBER_SELECTED", j, "");
685
686 for (i = 0; i < attr->num_values; i ++)
687 {
688 for (j = 0; j < num_printers; j ++)
689 {
88f9aafc 690 if (!_cups_strcasecmp(attr->values[i].string.text,
ef416fc2 691 cgiGetArray("MEMBER_NAMES", j)))
692 {
693 cgiSetArray("MEMBER_SELECTED", j, "SELECTED");
694 break;
695 }
696 }
697 }
698 }
699
700 if ((attr = ippFindAttribute(response, "printer-info",
701 IPP_TAG_TEXT)) != NULL)
702 cgiSetVariable("PRINTER_INFO", attr->values[0].string.text);
703
704 if ((attr = ippFindAttribute(response, "printer-location",
705 IPP_TAG_TEXT)) != NULL)
706 cgiSetVariable("PRINTER_LOCATION", attr->values[0].string.text);
707
708 ippDelete(response);
709 }
710
711 /*
712 * Update the location and description of an existing printer...
713 */
714
715 cgiStartHTML(title);
716 cgiCopyTemplateLang("modify-class.tmpl");
717 }
718 else
719 {
720 /*
721 * Get the name, location, and description for a new printer...
722 */
723
724 cgiStartHTML(title);
725 cgiCopyTemplateLang("add-class.tmpl");
726 }
727
728 cgiEndHTML();
729
730 return;
731 }
732
7a0cbd5e
MS
733 if (!name)
734 {
735 cgiStartHTML(title);
4d301e69 736 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
7a0cbd5e
MS
737 cgiCopyTemplateLang("error.tmpl");
738 cgiEndHTML();
739 return;
740 }
741
ef416fc2 742 for (ptr = name; *ptr; ptr ++)
743 if ((*ptr >= 0 && *ptr <= ' ') || *ptr == 127 || *ptr == '/' || *ptr == '#')
744 break;
745
746 if (*ptr || ptr == name || strlen(name) > 127)
747 {
fa73b229 748 cgiSetVariable("ERROR",
749 cgiText(_("The class name may only contain up to "
750 "127 printable characters and may not "
751 "contain spaces, slashes (/), or the "
752 "pound sign (#).")));
ef416fc2 753 cgiStartHTML(title);
754 cgiCopyTemplateLang("error.tmpl");
755 cgiEndHTML();
756 return;
757 }
758
759 /*
760 * Build a CUPS_ADD_CLASS request, which requires the following
761 * attributes:
762 *
763 * attributes-charset
764 * attributes-natural-language
765 * printer-uri
766 * printer-location
767 * printer-info
768 * printer-is-accepting-jobs
769 * printer-state
770 * member-uris
771 */
772
fa73b229 773 request = ippNewRequest(CUPS_ADD_CLASS);
ef416fc2 774
a4d04587 775 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
7a0cbd5e 776 "localhost", 0, "/classes/%s", name);
ef416fc2 777 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
778 NULL, uri);
779
780 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_TEXT, "printer-location",
781 NULL, cgiGetVariable("PRINTER_LOCATION"));
782
783 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_TEXT, "printer-info",
784 NULL, cgiGetVariable("PRINTER_INFO"));
785
786 ippAddBoolean(request, IPP_TAG_PRINTER, "printer-is-accepting-jobs", 1);
787
788 ippAddInteger(request, IPP_TAG_PRINTER, IPP_TAG_ENUM, "printer-state",
789 IPP_PRINTER_IDLE);
790
791 if ((num_printers = cgiGetSize("MEMBER_URIS")) > 0)
792 {
793 attr = ippAddStrings(request, IPP_TAG_PRINTER, IPP_TAG_URI, "member-uris",
794 num_printers, NULL, NULL);
795 for (i = 0; i < num_printers; i ++)
cc754834 796 attr->values[i].string.text = _cupsStrAlloc(cgiGetArray("MEMBER_URIS", i));
ef416fc2 797 }
798
799 /*
800 * Do the request and get back a response...
801 */
802
fa73b229 803 ippDelete(cupsDoRequest(http, request, "/admin/"));
ef416fc2 804
355e94dc
MS
805 if (cupsLastError() == IPP_NOT_AUTHORIZED)
806 {
807 puts("Status: 401\n");
808 exit(0);
809 }
810 else if (cupsLastError() > IPP_OK_CONFLICT)
ef416fc2 811 {
812 cgiStartHTML(title);
f3c17241
MS
813 cgiShowIPPError(modify ? _("Unable to modify class") :
814 _("Unable to add class"));
ef416fc2 815 }
816 else
817 {
818 /*
819 * Redirect successful updates back to the class page...
820 */
821
822 char refresh[1024]; /* Refresh URL */
823
824 cgiFormEncode(uri, name, sizeof(uri));
f301802f 825 snprintf(refresh, sizeof(refresh), "5;URL=/admin/?OP=redirect&URL=/classes/%s",
ef416fc2 826 uri);
827 cgiSetVariable("refresh_page", refresh);
828
829 cgiStartHTML(title);
830
831 if (modify)
832 cgiCopyTemplateLang("class-modified.tmpl");
833 else
834 cgiCopyTemplateLang("class-added.tmpl");
835 }
836
837 cgiEndHTML();
838}
839
840
841/*
842 * 'do_am_printer()' - Add or modify a printer.
843 */
844
845static void
fa73b229 846do_am_printer(http_t *http, /* I - HTTP connection */
847 int modify) /* I - Modify the printer? */
ef416fc2 848{
849 int i; /* Looping var */
89d46774 850 ipp_attribute_t *attr; /* Current attribute */
ef416fc2 851 ipp_t *request, /* IPP request */
852 *response, /* IPP response */
853 *oldinfo; /* Old printer information */
ef416fc2 854 const cgi_file_t *file; /* Uploaded file, if any */
855 const char *var; /* CGI variable */
856 char uri[HTTP_MAX_URI], /* Device or printer URI */
857 *uriptr; /* Pointer into URI */
858 int maxrate; /* Maximum baud rate */
859 char baudrate[255]; /* Baud rate string */
860 const char *name, /* Pointer to class name */
861 *ptr; /* Pointer to CGI variable */
862 const char *title; /* Title of page */
863 static int baudrates[] = /* Baud rates */
864 {
865 1200,
866 2400,
867 4800,
868 9600,
869 19200,
870 38400,
871 57600,
872 115200,
873 230400,
874 460800
875 };
876
877
f301802f 878 ptr = cgiGetVariable("DEVICE_URI");
fa73b229 879 fprintf(stderr, "DEBUG: do_am_printer: DEVICE_URI=\"%s\"\n",
f301802f 880 ptr ? ptr : "(null)");
fa73b229 881
882 title = cgiText(modify ? _("Modify Printer") : _("Add Printer"));
ef416fc2 883
884 if (modify)
885 {
886 /*
887 * Build an IPP_GET_PRINTER_ATTRIBUTES request, which requires the
888 * following attributes:
889 *
890 * attributes-charset
891 * attributes-natural-language
892 * printer-uri
893 */
894
fa73b229 895 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
ef416fc2 896
a4d04587 897 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
898 "localhost", 0, "/printers/%s",
899 cgiGetVariable("PRINTER_NAME"));
ef416fc2 900 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
901 NULL, uri);
902
903 /*
904 * Do the request and get back a response...
905 */
906
907 oldinfo = cupsDoRequest(http, request, "/");
908 }
909 else
910 oldinfo = NULL;
911
2e4ff8af 912 file = cgiGetFile();
ef416fc2 913
2e4ff8af
MS
914 if (file)
915 {
916 fprintf(stderr, "DEBUG: file->tempfile=%s\n", file->tempfile);
917 fprintf(stderr, "DEBUG: file->name=%s\n", file->name);
918 fprintf(stderr, "DEBUG: file->filename=%s\n", file->filename);
919 fprintf(stderr, "DEBUG: file->mimetype=%s\n", file->mimetype);
920 }
ef416fc2 921
2e4ff8af
MS
922 if ((name = cgiGetVariable("PRINTER_NAME")) != NULL)
923 {
924 for (ptr = name; *ptr; ptr ++)
925 if ((*ptr >= 0 && *ptr <= ' ') || *ptr == 127 || *ptr == '/' || *ptr == '#')
926 break;
ef416fc2 927
2e4ff8af
MS
928 if (*ptr || ptr == name || strlen(name) > 127)
929 {
930 cgiSetVariable("ERROR",
931 cgiText(_("The printer name may only contain up to "
932 "127 printable characters and may not "
933 "contain spaces, slashes (/), or the "
934 "pound sign (#).")));
935 cgiStartHTML(title);
936 cgiCopyTemplateLang("error.tmpl");
937 cgiEndHTML();
938 return;
ef416fc2 939 }
2e4ff8af
MS
940 }
941
942 if ((var = cgiGetVariable("DEVICE_URI")) != NULL)
943 {
944 if ((uriptr = strrchr(var, '|')) != NULL)
ef416fc2 945 {
946 /*
2e4ff8af 947 * Extract make and make/model from device URI string...
ef416fc2 948 */
949
2e4ff8af
MS
950 char make[1024], /* Make string */
951 *makeptr; /* Pointer into make */
ef416fc2 952
ef416fc2 953
2e4ff8af 954 *uriptr++ = '\0';
ef416fc2 955
2e4ff8af 956 strlcpy(make, uriptr, sizeof(make));
ef416fc2 957
2e4ff8af
MS
958 if ((makeptr = strchr(make, ' ')) != NULL)
959 *makeptr = '\0';
960 else if ((makeptr = strchr(make, '-')) != NULL)
961 *makeptr = '\0';
88f9aafc
MS
962 else if (!_cups_strncasecmp(make, "laserjet", 8) ||
963 !_cups_strncasecmp(make, "deskjet", 7) ||
964 !_cups_strncasecmp(make, "designjet", 9))
5a9febac 965 strlcpy(make, "HP", sizeof(make));
88f9aafc 966 else if (!_cups_strncasecmp(make, "phaser", 6))
5a9febac 967 strlcpy(make, "Xerox", sizeof(make));
88f9aafc 968 else if (!_cups_strncasecmp(make, "stylus", 6))
5a9febac 969 strlcpy(make, "Epson", sizeof(make));
2e4ff8af 970 else
5a9febac 971 strlcpy(make, "Generic", sizeof(make));
ef416fc2 972
2e4ff8af
MS
973 if (!cgiGetVariable("CURRENT_MAKE"))
974 cgiSetVariable("CURRENT_MAKE", make);
ef416fc2 975
2e4ff8af
MS
976 if (!cgiGetVariable("CURRENT_MAKE_AND_MODEL"))
977 cgiSetVariable("CURRENT_MAKE_AND_MODEL", uriptr);
978
979 if (!modify)
980 {
981 char template[128], /* Template name */
982 *tptr; /* Pointer into template name */
983
984 cgiSetVariable("PRINTER_INFO", uriptr);
985
986 for (tptr = template;
987 tptr < (template + sizeof(template) - 1) && *uriptr;
988 uriptr ++)
989 if (isalnum(*uriptr & 255) || *uriptr == '_' || *uriptr == '-' ||
990 *uriptr == '.')
991 *tptr++ = *uriptr;
41681883
MS
992 else if ((*uriptr == ' ' || *uriptr == '/') && tptr > template &&
993 tptr[-1] != '_')
2e4ff8af
MS
994 *tptr++ = '_';
995 else if (*uriptr == '?' || *uriptr == '(')
996 break;
997
998 *tptr = '\0';
999
1000 cgiSetVariable("TEMPLATE_NAME", template);
1001 }
1002 }
ef416fc2 1003 }
1004
2e4ff8af 1005 if (!var)
ef416fc2 1006 {
1007 /*
58dc1933 1008 * Look for devices so the user can pick something...
ef416fc2 1009 */
1010
58dc1933
MS
1011 if ((attr = ippFindAttribute(oldinfo, "device-uri", IPP_TAG_URI)) != NULL)
1012 {
1013 strlcpy(uri, attr->values[0].string.text, sizeof(uri));
1014 if ((uriptr = strchr(uri, ':')) != NULL && strncmp(uriptr, "://", 3) == 0)
1015 *uriptr = '\0';
a4d04587 1016
58dc1933
MS
1017 cgiSetVariable("CURRENT_DEVICE_URI", attr->values[0].string.text);
1018 cgiSetVariable("CURRENT_DEVICE_SCHEME", uri);
1019 }
ef416fc2 1020
ef55b745
MS
1021 /*
1022 * Scan for devices for up to 30 seconds...
ef416fc2 1023 */
1024
58dc1933 1025 fputs("DEBUG: Getting list of devices...\n", stderr);
a4d04587 1026
ef55b745 1027 current_device = 0;
f14324a7 1028 if (cupsGetDevices(http, 5, CUPS_INCLUDE_ALL, CUPS_EXCLUDE_NONE,
ed6e7faf 1029 (cups_device_cb_t)choose_device_cb,
f8b3a85b 1030 (void *)title) == IPP_OK)
d2354e63 1031 {
58dc1933 1032 fputs("DEBUG: Got device list!\n", stderr);
d2354e63 1033
ef55b745
MS
1034 if (cgiSupportsMultipart())
1035 cgiStartMultipart();
d2354e63 1036
ef55b745
MS
1037 cgiSetVariable("CUPS_GET_DEVICES_DONE", "1");
1038 cgiStartHTML(title);
1039 cgiCopyTemplateLang("choose-device.tmpl");
1040 cgiEndHTML();
1041
1042 if (cgiSupportsMultipart())
1043 cgiEndMultipart();
d2354e63 1044 }
a4d04587 1045 else
e4572d57 1046 {
a4d04587 1047 fprintf(stderr,
1048 "ERROR: CUPS-Get-Devices request failed with status %x: %s\n",
1049 cupsLastError(), cupsLastErrorString());
e4572d57
MS
1050 if (cupsLastError() == IPP_NOT_AUTHORIZED)
1051 {
1052 puts("Status: 401\n");
1053 exit(0);
1054 }
1055 else
1056 {
1057 cgiStartHTML(title);
f3c17241
MS
1058 cgiShowIPPError(modify ? _("Unable to modify printer") :
1059 _("Unable to add printer"));
e4572d57
MS
1060 cgiEndHTML();
1061 return;
1062 }
1063 }
ef416fc2 1064 }
0268488e
MS
1065 else if (!strchr(var, '/') ||
1066 (!strncmp(var, "lpd://", 6) && !strchr(var + 6, '/')))
ef416fc2 1067 {
1068 if ((attr = ippFindAttribute(oldinfo, "device-uri", IPP_TAG_URI)) != NULL)
1069 {
1070 /*
1071 * Set the current device URI for the form to the old one...
1072 */
1073
1074 if (strncmp(attr->values[0].string.text, var, strlen(var)) == 0)
1f6f3dbc 1075 cgiSetVariable("CURRENT_DEVICE_URI", attr->values[0].string.text);
ef416fc2 1076 }
1077
1078 /*
1079 * User needs to set the full URI...
1080 */
1081
1082 cgiStartHTML(title);
1083 cgiCopyTemplateLang("choose-uri.tmpl");
1084 cgiEndHTML();
1085 }
1086 else if (!strncmp(var, "serial:", 7) && !cgiGetVariable("BAUDRATE"))
1087 {
1088 /*
1089 * Need baud rate, parity, etc.
1090 */
1091
1092 if ((var = strchr(var, '?')) != NULL &&
1093 strncmp(var, "?baud=", 6) == 0)
1094 maxrate = atoi(var + 6);
1095 else
1096 maxrate = 19200;
1097
1098 for (i = 0; i < 10; i ++)
1099 if (baudrates[i] > maxrate)
1100 break;
1101 else
1102 {
1103 sprintf(baudrate, "%d", baudrates[i]);
1104 cgiSetArray("BAUDRATES", i, baudrate);
1105 }
1106
1107 cgiStartHTML(title);
1108 cgiCopyTemplateLang("choose-serial.tmpl");
1109 cgiEndHTML();
1110 }
2e4ff8af
MS
1111 else if (!name || !cgiGetVariable("PRINTER_LOCATION"))
1112 {
1113 cgiStartHTML(title);
1114
1115 if (modify)
1116 {
1117 /*
1118 * Update the location and description of an existing printer...
1119 */
1120
1121 if (oldinfo)
1f6f3dbc
MS
1122 {
1123 if ((attr = ippFindAttribute(oldinfo, "printer-info",
1124 IPP_TAG_TEXT)) != NULL)
1125 cgiSetVariable("PRINTER_INFO", attr->values[0].string.text);
1126
1127 if ((attr = ippFindAttribute(oldinfo, "printer-location",
1128 IPP_TAG_TEXT)) != NULL)
1129 cgiSetVariable("PRINTER_LOCATION", attr->values[0].string.text);
ef55b745
MS
1130
1131 if ((attr = ippFindAttribute(oldinfo, "printer-is-shared",
1132 IPP_TAG_BOOLEAN)) != NULL)
1133 cgiSetVariable("PRINTER_IS_SHARED",
1134 attr->values[0].boolean ? "1" : "0");
1f6f3dbc 1135 }
2e4ff8af
MS
1136
1137 cgiCopyTemplateLang("modify-printer.tmpl");
1138 }
1139 else
1140 {
1141 /*
1142 * Get the name, location, and description for a new printer...
1143 */
1144
c5571a1d
MS
1145#ifdef __APPLE__
1146 if (!strncmp(var, "usb:", 4))
1147 cgiSetVariable("printer_is_shared", "1");
1148 else
1149#endif /* __APPLE__ */
1150 cgiSetVariable("printer_is_shared", "0");
1151
2e4ff8af
MS
1152 cgiCopyTemplateLang("add-printer.tmpl");
1153 }
1154
1155 cgiEndHTML();
1156
1157 if (oldinfo)
1158 ippDelete(oldinfo);
1159
1160 return;
1161 }
bf3816c7
MS
1162 else if (!file &&
1163 (!cgiGetVariable("PPD_NAME") || cgiGetVariable("SELECT_MAKE")))
ef416fc2 1164 {
bf3816c7 1165 if (modify && !cgiGetVariable("SELECT_MAKE"))
ef416fc2 1166 {
1167 /*
1168 * Get the PPD file...
1169 */
1170
1171 int fd; /* PPD file */
1172 char filename[1024]; /* PPD filename */
1173 ppd_file_t *ppd; /* PPD information */
1174 char buffer[1024]; /* Buffer */
1175 int bytes; /* Number of bytes */
1176 http_status_t get_status; /* Status of GET */
1177
1178
a4d04587 1179 /* TODO: Use cupsGetFile() API... */
ef416fc2 1180 snprintf(uri, sizeof(uri), "/printers/%s.ppd", name);
1181
1182 if (httpGet(http, uri))
1183 httpGet(http, uri);
1184
1185 while ((get_status = httpUpdate(http)) == HTTP_CONTINUE);
1186
1187 if (get_status != HTTP_OK)
1188 {
178cb736
MS
1189 httpFlush(http);
1190
ef416fc2 1191 fprintf(stderr, "ERROR: Unable to get PPD file %s: %d - %s\n",
1192 uri, get_status, httpStatus(get_status));
1193 }
1194 else if ((fd = cupsTempFd(filename, sizeof(filename))) >= 0)
1195 {
a4d04587 1196 while ((bytes = httpRead2(http, buffer, sizeof(buffer))) > 0)
ef416fc2 1197 write(fd, buffer, bytes);
1198
1199 close(fd);
1200
1201 if ((ppd = ppdOpenFile(filename)) != NULL)
1202 {
1203 if (ppd->manufacturer)
1204 cgiSetVariable("CURRENT_MAKE", ppd->manufacturer);
1205
1206 if (ppd->nickname)
1207 cgiSetVariable("CURRENT_MAKE_AND_MODEL", ppd->nickname);
1208
1209 ppdClose(ppd);
1210 unlink(filename);
1211 }
1212 else
1213 {
1214 fprintf(stderr, "ERROR: Unable to open PPD file %s: %s\n",
1215 filename, ppdErrorString(ppdLastError(&bytes)));
1216 }
1217 }
1218 else
1219 {
1220 httpFlush(http);
1221
1222 fprintf(stderr,
1223 "ERROR: Unable to create temporary file for PPD file: %s\n",
1224 strerror(errno));
1225 }
1226 }
ef416fc2 1227
1228 /*
1229 * Build a CUPS_GET_PPDS request, which requires the following
1230 * attributes:
1231 *
1232 * attributes-charset
1233 * attributes-natural-language
1234 * printer-uri
1235 */
1236
fa73b229 1237 request = ippNewRequest(CUPS_GET_PPDS);
ef416fc2 1238
1239 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1240 NULL, "ipp://localhost/printers/");
1241
c7017ecc
MS
1242 if ((var = cgiGetVariable("PPD_MAKE")) == NULL)
1243 var = cgiGetVariable("CURRENT_MAKE");
bf3816c7 1244 if (var && !cgiGetVariable("SELECT_MAKE"))
58dc1933 1245 {
e4572d57
MS
1246 const char *make_model; /* Make and model */
1247
1248
ef416fc2 1249 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_TEXT,
1250 "ppd-make", NULL, var);
58dc1933 1251
bf3816c7 1252 if ((make_model = cgiGetVariable("CURRENT_MAKE_AND_MODEL")) != NULL)
58dc1933 1253 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_TEXT,
e4572d57 1254 "ppd-make-and-model", NULL, make_model);
58dc1933 1255 }
ef416fc2 1256 else
1257 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1258 "requested-attributes", NULL, "ppd-make");
1259
1260 /*
1261 * Do the request and get back a response...
1262 */
1263
1264 if ((response = cupsDoRequest(http, request, "/")) != NULL)
1265 {
1266 /*
1267 * Got the list of PPDs, see if the user has selected a make...
1268 */
1269
ef55b745 1270 if (cgiSetIPPVars(response, NULL, NULL, NULL, 0) == 0 && !modify)
ef416fc2 1271 {
1272 /*
89d46774 1273 * No PPD files with this make, try again with all makes...
ef416fc2 1274 */
1275
89d46774 1276 ippDelete(response);
1277
1278 request = ippNewRequest(CUPS_GET_PPDS);
1279
1280 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1281 NULL, "ipp://localhost/printers/");
1282
1283 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
1284 "requested-attributes", NULL, "ppd-make");
ef416fc2 1285
89d46774 1286 if ((response = cupsDoRequest(http, request, "/")) != NULL)
1287 cgiSetIPPVars(response, NULL, NULL, NULL, 0);
1288
1289 cgiStartHTML(title);
1290 cgiCopyTemplateLang("choose-make.tmpl");
1291 cgiEndHTML();
1292 }
2e4ff8af 1293 else if (!var || cgiGetVariable("SELECT_MAKE"))
89d46774 1294 {
ef416fc2 1295 cgiStartHTML(title);
1296 cgiCopyTemplateLang("choose-make.tmpl");
1297 cgiEndHTML();
1298 }
1299 else
1300 {
1301 /*
1302 * Let the user choose a model...
1303 */
1304
ef416fc2 1305 cgiStartHTML(title);
ef55b745
MS
1306 if (!cgiGetVariable("PPD_MAKE"))
1307 cgiSetVariable("PPD_MAKE", cgiGetVariable("CURRENT_MAKE"));
1308 if (!modify)
1309 cgiSetVariable("CURRENT_MAKE_AND_MODEL",
1310 cgiGetArray("PPD_MAKE_AND_MODEL", 0));
ef416fc2 1311 cgiCopyTemplateLang("choose-model.tmpl");
1312 cgiEndHTML();
1313 }
1314
ef416fc2 1315 ippDelete(response);
1316 }
1317 else
1318 {
ef416fc2 1319 cgiStartHTML(title);
f3c17241 1320 cgiShowIPPError(_("Unable to get list of printer drivers"));
ef416fc2 1321 cgiCopyTemplateLang("error.tmpl");
1322 cgiEndHTML();
1323 }
1324 }
1325 else
1326 {
1327 /*
1328 * Build a CUPS_ADD_PRINTER request, which requires the following
1329 * attributes:
1330 *
1331 * attributes-charset
1332 * attributes-natural-language
1333 * printer-uri
1334 * printer-location
1335 * printer-info
1336 * ppd-name
1337 * device-uri
1338 * printer-is-accepting-jobs
c5571a1d 1339 * printer-is-shared
ef416fc2 1340 * printer-state
1341 */
1342
fa73b229 1343 request = ippNewRequest(CUPS_ADD_PRINTER);
ef416fc2 1344
a4d04587 1345 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
1346 "localhost", 0, "/printers/%s",
1347 cgiGetVariable("PRINTER_NAME"));
ef416fc2 1348 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1349 NULL, uri);
1350
1351 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_TEXT, "printer-location",
1352 NULL, cgiGetVariable("PRINTER_LOCATION"));
1353
1354 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_TEXT, "printer-info",
1355 NULL, cgiGetVariable("PRINTER_INFO"));
1356
1357 if (!file)
0af14961
MS
1358 {
1359 var = cgiGetVariable("PPD_NAME");
1360 if (strcmp(var, "__no_change__"))
1361 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_NAME, "ppd-name",
1362 NULL, var);
1363 }
ef416fc2 1364
1365 strlcpy(uri, cgiGetVariable("DEVICE_URI"), sizeof(uri));
1366
1367 /*
1368 * Strip make and model from URI...
1369 */
1370
1371 if ((uriptr = strrchr(uri, '|')) != NULL)
1372 *uriptr = '\0';
1373
fa73b229 1374 if (!strncmp(uri, "serial:", 7))
ef416fc2 1375 {
1376 /*
1377 * Update serial port URI to include baud rate, etc.
1378 */
1379
1380 if ((uriptr = strchr(uri, '?')) == NULL)
1381 uriptr = uri + strlen(uri);
1382
1383 snprintf(uriptr, sizeof(uri) - (uriptr - uri),
1384 "?baud=%s+bits=%s+parity=%s+flow=%s",
1385 cgiGetVariable("BAUDRATE"), cgiGetVariable("BITS"),
1386 cgiGetVariable("PARITY"), cgiGetVariable("FLOW"));
1387 }
1388
1389 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_URI, "device-uri",
1390 NULL, uri);
1391
1392 ippAddBoolean(request, IPP_TAG_PRINTER, "printer-is-accepting-jobs", 1);
1393
c5571a1d
MS
1394 var = cgiGetVariable("printer_is_shared");
1395 ippAddBoolean(request, IPP_TAG_PRINTER, "printer-is-shared",
1396 var && (!strcmp(var, "1") || !strcmp(var, "on")));
1397
ef416fc2 1398 ippAddInteger(request, IPP_TAG_PRINTER, IPP_TAG_ENUM, "printer-state",
1399 IPP_PRINTER_IDLE);
1400
1401 /*
1402 * Do the request and get back a response...
1403 */
1404
1405 if (file)
fa73b229 1406 ippDelete(cupsDoFileRequest(http, request, "/admin/", file->tempfile));
ef416fc2 1407 else
fa73b229 1408 ippDelete(cupsDoRequest(http, request, "/admin/"));
ef416fc2 1409
355e94dc
MS
1410 if (cupsLastError() == IPP_NOT_AUTHORIZED)
1411 {
1412 puts("Status: 401\n");
1413 exit(0);
1414 }
1415 else if (cupsLastError() > IPP_OK_CONFLICT)
ef416fc2 1416 {
1417 cgiStartHTML(title);
f3c17241
MS
1418 cgiShowIPPError(modify ? _("Unable to modify printer") :
1419 _("Unable to add printer"));
ef416fc2 1420 }
2e4ff8af 1421 else if (modify)
ef416fc2 1422 {
1423 /*
2e4ff8af 1424 * Redirect successful updates back to the printer page...
ef416fc2 1425 */
1426
1427 char refresh[1024]; /* Refresh URL */
1428
1429
1430 cgiFormEncode(uri, name, sizeof(uri));
1431
2e4ff8af
MS
1432 snprintf(refresh, sizeof(refresh),
1433 "5;/admin/?OP=redirect&URL=/printers/%s", uri);
ef416fc2 1434
1435 cgiSetVariable("refresh_page", refresh);
1436
1437 cgiStartHTML(title);
1438
2e4ff8af
MS
1439 cgiCopyTemplateLang("printer-modified.tmpl");
1440 }
1441 else
1442 {
1443 /*
1444 * Set the printer options...
1445 */
1446
1447 cgiSetVariable("OP", "set-printer-options");
1448 do_set_options(http, 0);
1449 return;
ef416fc2 1450 }
1451
1452 cgiEndHTML();
1453 }
1454
1455 if (oldinfo)
1456 ippDelete(oldinfo);
1457}
1458
1459
f7deaa1a 1460/*
1461 * 'do_cancel_subscription()' - Cancel a subscription.
1462 */
1463
1464static void
1465do_cancel_subscription(http_t *http)/* I - HTTP connection */
1466{
1467 ipp_t *request; /* IPP request data */
1468 const char *var, /* Form variable */
1469 *user; /* Username */
1470 int id; /* Subscription ID */
1471
1472
1473 /*
1474 * See if we have all of the required information...
1475 */
1476
1477 if ((var = cgiGetVariable("NOTIFY_SUBSCRIPTION_ID")) != NULL)
1478 id = atoi(var);
1479 else
1480 id = 0;
1481
1482 if (id <= 0)
1483 {
4d301e69 1484 cgiSetVariable("ERROR", cgiText(_("Bad subscription ID")));
f7deaa1a 1485 cgiStartHTML(_("Cancel RSS Subscription"));
1486 cgiCopyTemplateLang("error.tmpl");
1487 cgiEndHTML();
1488 return;
1489 }
1490
839a51c8
MS
1491 /*
1492 * Require a username...
1493 */
1494
1495 if ((user = getenv("REMOTE_USER")) == NULL)
1496 {
1497 puts("Status: 401\n");
1498 exit(0);
1499 }
1500
f7deaa1a 1501 /*
1502 * Cancel the subscription...
1503 */
1504
1505 request = ippNewRequest(IPP_CANCEL_SUBSCRIPTION);
1506
1507 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
1508 NULL, "ipp://localhost/");
1509 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER,
1510 "notify-subscription-id", id);
1511
f7deaa1a 1512 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "requesting-user-name",
1513 NULL, user);
1514
1515 ippDelete(cupsDoRequest(http, request, "/"));
1516
355e94dc
MS
1517 if (cupsLastError() == IPP_NOT_AUTHORIZED)
1518 {
1519 puts("Status: 401\n");
1520 exit(0);
1521 }
1522 else if (cupsLastError() > IPP_OK_CONFLICT)
f7deaa1a 1523 {
1524 cgiStartHTML(_("Cancel RSS Subscription"));
f3c17241 1525 cgiShowIPPError(_("Unable to cancel RSS subscription"));
f7deaa1a 1526 }
1527 else
1528 {
1529 /*
1530 * Redirect successful updates back to the admin page...
1531 */
1532
1533 cgiSetVariable("refresh_page", "5;URL=/admin");
1534 cgiStartHTML(_("Cancel RSS Subscription"));
1535 cgiCopyTemplateLang("subscription-canceled.tmpl");
1536 }
1537
1538 cgiEndHTML();
1539}
1540
1541
ef416fc2 1542/*
323c5de1 1543 * 'do_config_server()' - Configure server settings.
ef416fc2 1544 */
1545
1546static void
323c5de1 1547do_config_server(http_t *http) /* I - HTTP connection */
ef416fc2 1548{
2e4ff8af 1549 if (cgiGetVariable("CHANGESETTINGS"))
ef416fc2 1550 {
323c5de1 1551 /*
1552 * Save basic setting changes...
1553 */
ef416fc2 1554
323c5de1 1555 int num_settings; /* Number of server settings */
1556 cups_option_t *settings; /* Server settings */
0af14961
MS
1557 int advanced, /* Advanced settings shown? */
1558 changed; /* Have settings changed? */
323c5de1 1559 const char *debug_logging, /* DEBUG_LOGGING value */
82cc1f9a
MS
1560 *preserve_jobs = NULL,
1561 /* PRESERVE_JOBS value */
323c5de1 1562 *remote_admin, /* REMOTE_ADMIN value */
1563 *remote_any, /* REMOTE_ANY value */
323c5de1 1564 *share_printers,/* SHARE_PRINTERS value */
0af14961 1565 *user_cancel_any,
ac884b6a 1566 /* USER_CANCEL_ANY value */
bf3816c7
MS
1567 *browse_web_if = NULL,
1568 /* BrowseWebIF value */
1569 *preserve_job_history = NULL,
0af14961 1570 /* PreserveJobHistory value */
bf3816c7 1571 *preserve_job_files = NULL,
0af14961 1572 /* PreserveJobFiles value */
bf3816c7
MS
1573 *max_clients = NULL,
1574 /* MaxClients value */
1575 *max_jobs = NULL,
1576 /* MaxJobs value */
1577 *max_log_size = NULL;
1578 /* MaxLogSize value */
58dc1933
MS
1579 const char *current_browse_web_if,
1580 /* BrowseWebIF value */
1581 *current_preserve_job_history,
1582 /* PreserveJobHistory value */
1583 *current_preserve_job_files,
1584 /* PreserveJobFiles value */
1585 *current_max_clients,
1586 /* MaxClients value */
1587 *current_max_jobs,
1588 /* MaxJobs value */
a2326b5b 1589 *current_max_log_size;
58dc1933 1590 /* MaxLogSize value */
323c5de1 1591#ifdef HAVE_GSSAPI
ac884b6a 1592 char default_auth_type[255];
323c5de1 1593 /* DefaultAuthType value */
ef55b745 1594 const char *val; /* Setting value */
323c5de1 1595#endif /* HAVE_GSSAPI */
bd7854cb 1596
ef416fc2 1597
323c5de1 1598 /*
1599 * Get the checkbox values from the form...
1600 */
bd7854cb 1601
0af14961
MS
1602 debug_logging = cgiGetVariable("DEBUG_LOGGING") ? "1" : "0";
1603 remote_admin = cgiGetVariable("REMOTE_ADMIN") ? "1" : "0";
1604 remote_any = cgiGetVariable("REMOTE_ANY") ? "1" : "0";
0af14961
MS
1605 share_printers = cgiGetVariable("SHARE_PRINTERS") ? "1" : "0";
1606 user_cancel_any = cgiGetVariable("USER_CANCEL_ANY") ? "1" : "0";
1607
1608 advanced = cgiGetVariable("ADVANCEDSETTINGS") != NULL;
1609 if (advanced)
1610 {
1611 /*
1612 * Get advanced settings...
1613 */
1614
1615 browse_web_if = cgiGetVariable("BROWSE_WEB_IF") ? "Yes" : "No";
1f6f3dbc 1616 max_clients = cgiGetVariable("MAX_CLIENTS");
0af14961 1617 max_log_size = cgiGetVariable("MAX_LOG_SIZE");
82cc1f9a
MS
1618 preserve_jobs = cgiGetVariable("PRESERVE_JOBS");
1619
1620 if (preserve_jobs)
1621 {
1622 max_jobs = cgiGetVariable("MAX_JOBS");
1623 preserve_job_history = cgiGetVariable("PRESERVE_JOB_HISTORY");
1624 preserve_job_files = cgiGetVariable("PRESERVE_JOB_FILES");
1625
1626 if (!max_jobs || atoi(max_jobs) < 0)
1627 max_jobs = "500";
1628
1629 if (!preserve_job_history)
1630 preserve_job_history = "On";
1631
1632 if (!preserve_job_files)
1633 preserve_job_files = "1d";
1634 }
1635 else
1636 {
1637 max_jobs = "0";
1638 preserve_job_history = "No";
1639 preserve_job_files = "No";
1640 }
0af14961 1641
1f6f3dbc
MS
1642 if (!max_clients || atoi(max_clients) <= 0)
1643 max_clients = "100";
1644
82cc1f9a 1645 if (!max_log_size || atoi(max_log_size) <= 0.0)
0af14961 1646 max_log_size = "1m";
0af14961 1647 }
bd7854cb 1648
323c5de1 1649 /*
1650 * Get the current server settings...
1651 */
ef416fc2 1652
323c5de1 1653 if (!cupsAdminGetServerSettings(http, &num_settings, &settings))
1654 {
1655 cgiStartHTML(cgiText(_("Change Settings")));
1656 cgiSetVariable("MESSAGE",
f3c17241 1657 cgiText(_("Unable to change server settings")));
323c5de1 1658 cgiSetVariable("ERROR", cupsLastErrorString());
1659 cgiCopyTemplateLang("error.tmpl");
1660 cgiEndHTML();
1661 return;
1662 }
ef416fc2 1663
0a682745
MS
1664#ifdef HAVE_GSSAPI
1665 /*
1666 * Get authentication settings...
1667 */
1668
1669 if (cgiGetVariable("KERBEROS"))
ac884b6a 1670 strlcpy(default_auth_type, "Negotiate", sizeof(default_auth_type));
0a682745
MS
1671 else
1672 {
0af14961 1673 val = cupsGetOption("DefaultAuthType", num_settings, settings);
ac884b6a 1674
88f9aafc 1675 if (!val || !_cups_strcasecmp(val, "Negotiate"))
ac884b6a
MS
1676 strlcpy(default_auth_type, "Basic", sizeof(default_auth_type));
1677 else
1678 strlcpy(default_auth_type, val, sizeof(default_auth_type));
0a682745
MS
1679 }
1680
1681 fprintf(stderr, "DEBUG: DefaultAuthType %s\n", default_auth_type);
1682#endif /* HAVE_GSSAPI */
1683
58dc1933
MS
1684 if ((current_browse_web_if = cupsGetOption("BrowseWebIF", num_settings,
1685 settings)) == NULL)
1686 current_browse_web_if = "No";
1687
1688 if ((current_preserve_job_history = cupsGetOption("PreserveJobHistory",
1689 num_settings,
1690 settings)) == NULL)
1691 current_preserve_job_history = "Yes";
1692
1693 if ((current_preserve_job_files = cupsGetOption("PreserveJobFiles",
1694 num_settings,
1695 settings)) == NULL)
82cc1f9a 1696 current_preserve_job_files = "1d";
58dc1933
MS
1697
1698 if ((current_max_clients = cupsGetOption("MaxClients", num_settings,
1699 settings)) == NULL)
1700 current_max_clients = "100";
1701
1702 if ((current_max_jobs = cupsGetOption("MaxJobs", num_settings,
1703 settings)) == NULL)
1704 current_max_jobs = "500";
1705
1706 if ((current_max_log_size = cupsGetOption("MaxLogSize", num_settings,
1707 settings)) == NULL)
1708 current_max_log_size = "1m";
1709
323c5de1 1710 /*
1711 * See if the settings have changed...
1712 */
1713
0af14961
MS
1714 changed = strcmp(debug_logging, cupsGetOption(CUPS_SERVER_DEBUG_LOGGING,
1715 num_settings, settings)) ||
1716 strcmp(remote_admin, cupsGetOption(CUPS_SERVER_REMOTE_ADMIN,
1717 num_settings, settings)) ||
1718 strcmp(remote_any, cupsGetOption(CUPS_SERVER_REMOTE_ANY,
1719 num_settings, settings)) ||
0af14961
MS
1720 strcmp(share_printers, cupsGetOption(CUPS_SERVER_SHARE_PRINTERS,
1721 num_settings, settings)) ||
323c5de1 1722#ifdef HAVE_GSSAPI
0af14961
MS
1723 !cupsGetOption("DefaultAuthType", num_settings, settings) ||
1724 strcmp(default_auth_type, cupsGetOption("DefaultAuthType",
1725 num_settings, settings)) ||
323c5de1 1726#endif /* HAVE_GSSAPI */
0af14961
MS
1727 strcmp(user_cancel_any, cupsGetOption(CUPS_SERVER_USER_CANCEL_ANY,
1728 num_settings, settings));
1729
1730 if (advanced && !changed)
a2326b5b 1731 changed = _cups_strcasecmp(browse_web_if, current_browse_web_if) ||
88f9aafc
MS
1732 _cups_strcasecmp(preserve_job_history, current_preserve_job_history) ||
1733 _cups_strcasecmp(preserve_job_files, current_preserve_job_files) ||
1734 _cups_strcasecmp(max_clients, current_max_clients) ||
1735 _cups_strcasecmp(max_jobs, current_max_jobs) ||
1736 _cups_strcasecmp(max_log_size, current_max_log_size);
0af14961
MS
1737
1738 if (changed)
323c5de1 1739 {
1740 /*
1741 * Settings *have* changed, so save the changes...
1742 */
ef416fc2 1743
323c5de1 1744 cupsFreeOptions(num_settings, settings);
ef416fc2 1745
323c5de1 1746 num_settings = 0;
1747 num_settings = cupsAddOption(CUPS_SERVER_DEBUG_LOGGING,
1748 debug_logging, num_settings, &settings);
1749 num_settings = cupsAddOption(CUPS_SERVER_REMOTE_ADMIN,
1750 remote_admin, num_settings, &settings);
1751 num_settings = cupsAddOption(CUPS_SERVER_REMOTE_ANY,
1752 remote_any, num_settings, &settings);
323c5de1 1753 num_settings = cupsAddOption(CUPS_SERVER_SHARE_PRINTERS,
1754 share_printers, num_settings, &settings);
1755 num_settings = cupsAddOption(CUPS_SERVER_USER_CANCEL_ANY,
1756 user_cancel_any, num_settings, &settings);
1757#ifdef HAVE_GSSAPI
1758 num_settings = cupsAddOption("DefaultAuthType", default_auth_type,
1759 num_settings, &settings);
1760#endif /* HAVE_GSSAPI */
ef416fc2 1761
0af14961
MS
1762 if (advanced)
1763 {
1764 /*
1765 * Add advanced settings...
1766 */
1767
88f9aafc 1768 if (_cups_strcasecmp(browse_web_if, current_browse_web_if))
0af14961
MS
1769 num_settings = cupsAddOption("BrowseWebIF", browse_web_if,
1770 num_settings, &settings);
88f9aafc 1771 if (_cups_strcasecmp(preserve_job_history, current_preserve_job_history))
0af14961
MS
1772 num_settings = cupsAddOption("PreserveJobHistory",
1773 preserve_job_history, num_settings,
1774 &settings);
88f9aafc 1775 if (_cups_strcasecmp(preserve_job_files, current_preserve_job_files))
0af14961
MS
1776 num_settings = cupsAddOption("PreserveJobFiles", preserve_job_files,
1777 num_settings, &settings);
88f9aafc 1778 if (_cups_strcasecmp(max_clients, current_max_clients))
1f6f3dbc
MS
1779 num_settings = cupsAddOption("MaxClients", max_clients, num_settings,
1780 &settings);
88f9aafc 1781 if (_cups_strcasecmp(max_jobs, current_max_jobs))
0af14961
MS
1782 num_settings = cupsAddOption("MaxJobs", max_jobs, num_settings,
1783 &settings);
88f9aafc 1784 if (_cups_strcasecmp(max_log_size, current_max_log_size))
0af14961
MS
1785 num_settings = cupsAddOption("MaxLogSize", max_log_size, num_settings,
1786 &settings);
1787 }
1788
323c5de1 1789 if (!cupsAdminSetServerSettings(http, num_settings, settings))
ef416fc2 1790 {
355e94dc
MS
1791 if (cupsLastError() == IPP_NOT_AUTHORIZED)
1792 {
1793 puts("Status: 401\n");
1794 exit(0);
1795 }
1796
323c5de1 1797 cgiStartHTML(cgiText(_("Change Settings")));
1798 cgiSetVariable("MESSAGE",
f3c17241 1799 cgiText(_("Unable to change server settings")));
323c5de1 1800 cgiSetVariable("ERROR", cupsLastErrorString());
1801 cgiCopyTemplateLang("error.tmpl");
ef416fc2 1802 }
ef416fc2 1803 else
323c5de1 1804 {
58dc1933 1805 if (advanced)
a2326b5b
MS
1806 cgiSetVariable("refresh_page", "5;URL=/admin/?OP=redirect&"
1807 "URL=/admin/?ADVANCEDSETTINGS=YES");
58dc1933
MS
1808 else
1809 cgiSetVariable("refresh_page", "5;URL=/admin/?OP=redirect");
323c5de1 1810 cgiStartHTML(cgiText(_("Change Settings")));
1811 cgiCopyTemplateLang("restart.tmpl");
1812 }
1813 }
1814 else
1815 {
1816 /*
1817 * No changes...
1818 */
ef416fc2 1819
323c5de1 1820 cgiSetVariable("refresh_page", "5;URL=/admin/?OP=redirect");
1821 cgiStartHTML(cgiText(_("Change Settings")));
1822 cgiCopyTemplateLang("norestart.tmpl");
1823 }
ef416fc2 1824
323c5de1 1825 cupsFreeOptions(num_settings, settings);
ef416fc2 1826
323c5de1 1827 cgiEndHTML();
1828 }
2e4ff8af 1829 else if (cgiGetVariable("SAVECHANGES") && cgiGetVariable("CUPSDCONF"))
ef416fc2 1830 {
1831 /*
323c5de1 1832 * Save hand-edited config file...
ef416fc2 1833 */
1834
323c5de1 1835 http_status_t status; /* PUT status */
1836 char tempfile[1024]; /* Temporary new cupsd.conf */
1837 int tempfd; /* Temporary file descriptor */
1838 cups_file_t *temp; /* Temporary file */
1839 const char *start, /* Start of line */
1840 *end; /* End of line */
bd7854cb 1841
fa73b229 1842
323c5de1 1843 /*
1844 * Create a temporary file for the new cupsd.conf file...
1845 */
ef416fc2 1846
323c5de1 1847 if ((tempfd = cupsTempFd(tempfile, sizeof(tempfile))) < 0)
ef416fc2 1848 {
323c5de1 1849 cgiStartHTML(cgiText(_("Edit Configuration File")));
f3c17241 1850 cgiSetVariable("MESSAGE", cgiText(_("Unable to create temporary file")));
323c5de1 1851 cgiSetVariable("ERROR", strerror(errno));
1852 cgiCopyTemplateLang("error.tmpl");
1853 cgiEndHTML();
ef55b745 1854
323c5de1 1855 perror(tempfile);
1856 return;
ef416fc2 1857 }
1858
323c5de1 1859 if ((temp = cupsFileOpenFd(tempfd, "w")) == NULL)
ef416fc2 1860 {
323c5de1 1861 cgiStartHTML(cgiText(_("Edit Configuration File")));
f3c17241 1862 cgiSetVariable("MESSAGE", cgiText(_("Unable to create temporary file")));
323c5de1 1863 cgiSetVariable("ERROR", strerror(errno));
1864 cgiCopyTemplateLang("error.tmpl");
1865 cgiEndHTML();
ef55b745 1866
323c5de1 1867 perror(tempfile);
1868 close(tempfd);
1869 unlink(tempfile);
1870 return;
1871 }
ef416fc2 1872
323c5de1 1873 /*
1874 * Copy the cupsd.conf text from the form variable...
1875 */
ef416fc2 1876
323c5de1 1877 start = cgiGetVariable("CUPSDCONF");
1878 while (start)
1879 {
1880 if ((end = strstr(start, "\r\n")) == NULL)
1881 if ((end = strstr(start, "\n")) == NULL)
1882 end = start + strlen(start);
ef416fc2 1883
323c5de1 1884 cupsFileWrite(temp, start, end - start);
1885 cupsFilePutChar(temp, '\n');
ef416fc2 1886
323c5de1 1887 if (*end == '\r')
1888 start = end + 2;
1889 else if (*end == '\n')
1890 start = end + 1;
1891 else
1892 start = NULL;
1893 }
ef416fc2 1894
323c5de1 1895 cupsFileClose(temp);
ef416fc2 1896
323c5de1 1897 /*
1898 * Upload the configuration file to the server...
1899 */
ef416fc2 1900
323c5de1 1901 status = cupsPutFile(http, "/admin/conf/cupsd.conf", tempfile);
ef416fc2 1902
355e94dc
MS
1903 if (status == HTTP_UNAUTHORIZED)
1904 {
1905 puts("Status: 401\n");
1906 unlink(tempfile);
1907 exit(0);
1908 }
1909 else if (status != HTTP_CREATED)
323c5de1 1910 {
1911 cgiSetVariable("MESSAGE",
f3c17241 1912 cgiText(_("Unable to upload cupsd.conf file")));
323c5de1 1913 cgiSetVariable("ERROR", httpStatus(status));
1914
1915 cgiStartHTML(cgiText(_("Edit Configuration File")));
1916 cgiCopyTemplateLang("error.tmpl");
1917 }
1918 else
1919 {
1920 cgiSetVariable("refresh_page", "5;URL=/admin/?OP=redirect");
1921
1922 cgiStartHTML(cgiText(_("Edit Configuration File")));
1923 cgiCopyTemplateLang("restart.tmpl");
ef416fc2 1924 }
1925
323c5de1 1926 cgiEndHTML();
1927
1928 unlink(tempfile);
1929 }
1930 else
1931 {
1932 struct stat info; /* cupsd.conf information */
1933 cups_file_t *cupsd; /* cupsd.conf file */
355e94dc
MS
1934 char *buffer, /* Buffer for entire file */
1935 *bufptr, /* Pointer into buffer */
1936 *bufend; /* End of buffer */
1937 int ch; /* Character from file */
323c5de1 1938 char filename[1024]; /* Filename */
1939 const char *server_root; /* Location of config files */
1940
1941
ef416fc2 1942 /*
323c5de1 1943 * Locate the cupsd.conf file...
ef416fc2 1944 */
1945
323c5de1 1946 if ((server_root = getenv("CUPS_SERVERROOT")) == NULL)
1947 server_root = CUPS_SERVERROOT;
ef416fc2 1948
323c5de1 1949 snprintf(filename, sizeof(filename), "%s/cupsd.conf", server_root);
ef416fc2 1950
1951 /*
323c5de1 1952 * Figure out the size...
ef416fc2 1953 */
1954
323c5de1 1955 if (stat(filename, &info))
ef416fc2 1956 {
323c5de1 1957 cgiStartHTML(cgiText(_("Edit Configuration File")));
1958 cgiSetVariable("MESSAGE",
f3c17241 1959 cgiText(_("Unable to access cupsd.conf file")));
323c5de1 1960 cgiSetVariable("ERROR", strerror(errno));
1961 cgiCopyTemplateLang("error.tmpl");
1962 cgiEndHTML();
ef416fc2 1963
323c5de1 1964 perror(filename);
1965 return;
1966 }
ef416fc2 1967
323c5de1 1968 if (info.st_size > (1024 * 1024))
1969 {
1970 cgiStartHTML(cgiText(_("Edit Configuration File")));
1971 cgiSetVariable("MESSAGE",
f3c17241 1972 cgiText(_("Unable to access cupsd.conf file")));
323c5de1 1973 cgiSetVariable("ERROR",
1974 cgiText(_("Unable to edit cupsd.conf files larger than "
4d301e69 1975 "1MB")));
323c5de1 1976 cgiCopyTemplateLang("error.tmpl");
1977 cgiEndHTML();
ef416fc2 1978
323c5de1 1979 fprintf(stderr, "ERROR: \"%s\" too large (%ld) to edit!\n", filename,
1980 (long)info.st_size);
1981 return;
1982 }
ef416fc2 1983
323c5de1 1984 /*
1985 * Open the cupsd.conf file...
1986 */
ef416fc2 1987
323c5de1 1988 if ((cupsd = cupsFileOpen(filename, "r")) == NULL)
1989 {
1990 /*
1991 * Unable to open - log an error...
1992 */
ef416fc2 1993
323c5de1 1994 cgiStartHTML(cgiText(_("Edit Configuration File")));
1995 cgiSetVariable("MESSAGE",
f3c17241 1996 cgiText(_("Unable to access cupsd.conf file")));
323c5de1 1997 cgiSetVariable("ERROR", strerror(errno));
1998 cgiCopyTemplateLang("error.tmpl");
1999 cgiEndHTML();
ef416fc2 2000
323c5de1 2001 perror(filename);
2002 return;
2003 }
ef416fc2 2004
323c5de1 2005 /*
2006 * Allocate memory and load the file into a string buffer...
2007 */
ef416fc2 2008
91c84a35
MS
2009 if ((buffer = calloc(1, info.st_size + 1)) != NULL)
2010 {
2011 cupsFileRead(cupsd, buffer, info.st_size);
2012 cgiSetVariable("CUPSDCONF", buffer);
2013 free(buffer);
2014 }
ef416fc2 2015
323c5de1 2016 cupsFileClose(cupsd);
ef416fc2 2017
355e94dc
MS
2018 /*
2019 * Then get the default cupsd.conf file and put that into a string as
2020 * well...
2021 */
2022
2023 strlcat(filename, ".default", sizeof(filename));
2024
2025 if (!stat(filename, &info) && info.st_size < (1024 * 1024) &&
2026 (cupsd = cupsFileOpen(filename, "r")) != NULL)
2027 {
91c84a35 2028 if ((buffer = calloc(1, 2 * info.st_size + 1)) != NULL)
355e94dc 2029 {
91c84a35
MS
2030 bufend = buffer + 2 * info.st_size - 1;
2031
2032 for (bufptr = buffer;
2033 bufptr < bufend && (ch = cupsFileGetChar(cupsd)) != EOF;)
355e94dc 2034 {
91c84a35
MS
2035 if (ch == '\\' || ch == '\"')
2036 {
2037 *bufptr++ = '\\';
2038 *bufptr++ = ch;
2039 }
2040 else if (ch == '\n')
2041 {
2042 *bufptr++ = '\\';
2043 *bufptr++ = 'n';
2044 }
2045 else if (ch == '\t')
2046 {
2047 *bufptr++ = '\\';
2048 *bufptr++ = 't';
2049 }
2050 else if (ch >= ' ')
2051 *bufptr++ = ch;
355e94dc 2052 }
355e94dc 2053
91c84a35 2054 *bufptr = '\0';
355e94dc 2055
91c84a35
MS
2056 cgiSetVariable("CUPSDCONF_DEFAULT", buffer);
2057 free(buffer);
2058 }
355e94dc 2059
91c84a35 2060 cupsFileClose(cupsd);
355e94dc
MS
2061 }
2062
323c5de1 2063 /*
2064 * Show the current config file...
2065 */
ef416fc2 2066
323c5de1 2067 cgiStartHTML(cgiText(_("Edit Configuration File")));
ef416fc2 2068
323c5de1 2069 cgiCopyTemplateLang("edit-config.tmpl");
ef416fc2 2070
323c5de1 2071 cgiEndHTML();
2072 }
2073}
ef416fc2 2074
ef416fc2 2075
323c5de1 2076/*
749b1e90 2077 * 'do_delete_class()' - Delete a class.
323c5de1 2078 */
ef416fc2 2079
323c5de1 2080static void
2081do_delete_class(http_t *http) /* I - HTTP connection */
2082{
2083 ipp_t *request; /* IPP request */
2084 char uri[HTTP_MAX_URI]; /* Job URI */
2085 const char *pclass; /* Printer class name */
ef416fc2 2086
ef416fc2 2087
323c5de1 2088 /*
2089 * Get form variables...
2090 */
ef416fc2 2091
323c5de1 2092 if (cgiGetVariable("CONFIRM") == NULL)
2093 {
2094 cgiStartHTML(cgiText(_("Delete Class")));
2095 cgiCopyTemplateLang("class-confirm.tmpl");
2096 cgiEndHTML();
2097 return;
2098 }
ef416fc2 2099
323c5de1 2100 if ((pclass = cgiGetVariable("PRINTER_NAME")) != NULL)
2101 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
2102 "localhost", 0, "/classes/%s", pclass);
2103 else
2104 {
2105 cgiStartHTML(cgiText(_("Delete Class")));
4d301e69 2106 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
323c5de1 2107 cgiCopyTemplateLang("error.tmpl");
2108 cgiEndHTML();
2109 return;
2110 }
ef416fc2 2111
323c5de1 2112 /*
2113 * Build a CUPS_DELETE_CLASS request, which requires the following
2114 * attributes:
2115 *
2116 * attributes-charset
2117 * attributes-natural-language
2118 * printer-uri
2119 */
2120
2121 request = ippNewRequest(CUPS_DELETE_CLASS);
2122
2123 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2124 NULL, uri);
2125
2126 /*
2127 * Do the request and get back a response...
2128 */
2129
2130 ippDelete(cupsDoRequest(http, request, "/admin/"));
ef416fc2 2131
323c5de1 2132 /*
2133 * Show the results...
2134 */
2135
355e94dc
MS
2136 if (cupsLastError() == IPP_NOT_AUTHORIZED)
2137 {
2138 puts("Status: 401\n");
2139 exit(0);
2140 }
2141 else if (cupsLastError() <= IPP_OK_CONFLICT)
323c5de1 2142 {
ef416fc2 2143 /*
323c5de1 2144 * Redirect successful updates back to the classes page...
ef416fc2 2145 */
2146
323c5de1 2147 cgiSetVariable("refresh_page", "5;URL=/admin/?OP=redirect&URL=/classes");
2148 }
ef416fc2 2149
323c5de1 2150 cgiStartHTML(cgiText(_("Delete Class")));
ef416fc2 2151
323c5de1 2152 if (cupsLastError() > IPP_OK_CONFLICT)
f3c17241 2153 cgiShowIPPError(_("Unable to delete class"));
323c5de1 2154 else
2155 cgiCopyTemplateLang("class-deleted.tmpl");
ef416fc2 2156
323c5de1 2157 cgiEndHTML();
2158}
ef416fc2 2159
ef416fc2 2160
323c5de1 2161/*
749b1e90 2162 * 'do_delete_printer()' - Delete a printer.
323c5de1 2163 */
ef416fc2 2164
323c5de1 2165static void
2166do_delete_printer(http_t *http) /* I - HTTP connection */
2167{
2168 ipp_t *request; /* IPP request */
2169 char uri[HTTP_MAX_URI]; /* Job URI */
2170 const char *printer; /* Printer printer name */
ef416fc2 2171
323c5de1 2172
2173 /*
2174 * Get form variables...
2175 */
2176
2177 if (cgiGetVariable("CONFIRM") == NULL)
2178 {
2179 cgiStartHTML(cgiText(_("Delete Printer")));
2180 cgiCopyTemplateLang("printer-confirm.tmpl");
ef416fc2 2181 cgiEndHTML();
323c5de1 2182 return;
ef416fc2 2183 }
323c5de1 2184
2185 if ((printer = cgiGetVariable("PRINTER_NAME")) != NULL)
2186 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
2187 "localhost", 0, "/printers/%s", printer);
ef416fc2 2188 else
323c5de1 2189 {
2190 cgiStartHTML(cgiText(_("Delete Printer")));
4d301e69 2191 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
323c5de1 2192 cgiCopyTemplateLang("error.tmpl");
2193 cgiEndHTML();
2194 return;
2195 }
2196
2197 /*
2198 * Build a CUPS_DELETE_PRINTER request, which requires the following
2199 * attributes:
2200 *
2201 * attributes-charset
2202 * attributes-natural-language
2203 * printer-uri
2204 */
2205
2206 request = ippNewRequest(CUPS_DELETE_PRINTER);
2207
2208 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2209 NULL, uri);
2210
2211 /*
2212 * Do the request and get back a response...
2213 */
2214
2215 ippDelete(cupsDoRequest(http, request, "/admin/"));
2216
2217 /*
2218 * Show the results...
2219 */
2220
355e94dc
MS
2221 if (cupsLastError() == IPP_NOT_AUTHORIZED)
2222 {
2223 puts("Status: 401\n");
2224 exit(0);
2225 }
2226 else if (cupsLastError() <= IPP_OK_CONFLICT)
ef416fc2 2227 {
2228 /*
323c5de1 2229 * Redirect successful updates back to the printers page...
ef416fc2 2230 */
2231
323c5de1 2232 cgiSetVariable("refresh_page", "5;URL=/admin/?OP=redirect&URL=/printers");
2233 }
bd7854cb 2234
323c5de1 2235 cgiStartHTML(cgiText(_("Delete Printer")));
ef416fc2 2236
323c5de1 2237 if (cupsLastError() > IPP_OK_CONFLICT)
f3c17241 2238 cgiShowIPPError(_("Unable to delete printer"));
323c5de1 2239 else
2240 cgiCopyTemplateLang("printer-deleted.tmpl");
ef416fc2 2241
323c5de1 2242 cgiEndHTML();
2243}
ef416fc2 2244
ef416fc2 2245
323c5de1 2246/*
749b1e90 2247 * 'do_export()' - Export printers to Samba.
323c5de1 2248 */
ef416fc2 2249
323c5de1 2250static void
2251do_export(http_t *http) /* I - HTTP connection */
2252{
2253 int i, j; /* Looping vars */
2254 ipp_t *request, /* IPP request */
2255 *response; /* IPP response */
2256 const char *username, /* Samba username */
2257 *password, /* Samba password */
2258 *export_all; /* Export all printers? */
2259 int export_count, /* Number of printers to export */
2260 printer_count; /* Number of available printers */
2261 const char *name, /* What name to pull */
2262 *dest; /* Current destination */
2263 char ppd[1024]; /* PPD file */
ef416fc2 2264
ef416fc2 2265
323c5de1 2266 /*
2267 * Get form data...
2268 */
ef416fc2 2269
323c5de1 2270 username = cgiGetVariable("USERNAME");
2271 password = cgiGetVariable("PASSWORD");
2272 export_all = cgiGetVariable("EXPORT_ALL");
2273 export_count = cgiGetSize("EXPORT_NAME");
ef416fc2 2274
323c5de1 2275 /*
2276 * Get list of available printers...
2277 */
ef416fc2 2278
323c5de1 2279 cgiSetSize("PRINTER_NAME", 0);
2280 cgiSetSize("PRINTER_EXPORT", 0);
ef416fc2 2281
323c5de1 2282 request = ippNewRequest(CUPS_GET_PRINTERS);
ef416fc2 2283
323c5de1 2284 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM,
2285 "printer-type", 0);
ef416fc2 2286
323c5de1 2287 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM,
a2326b5b 2288 "printer-type-mask", CUPS_PRINTER_CLASS | CUPS_PRINTER_REMOTE);
ef416fc2 2289
323c5de1 2290 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2291 "requested-attributes", NULL, "printer-name");
ef416fc2 2292
323c5de1 2293 if ((response = cupsDoRequest(http, request, "/")) != NULL)
2294 {
2295 cgiSetIPPVars(response, NULL, NULL, NULL, 0);
2296 ippDelete(response);
ef416fc2 2297
323c5de1 2298 if (!export_all)
2299 {
2300 printer_count = cgiGetSize("PRINTER_NAME");
ef416fc2 2301
323c5de1 2302 for (i = 0; i < printer_count; i ++)
2303 {
2304 dest = cgiGetArray("PRINTER_NAME", i);
ef416fc2 2305
323c5de1 2306 for (j = 0; j < export_count; j ++)
88f9aafc 2307 if (!_cups_strcasecmp(dest, cgiGetArray("EXPORT_NAME", j)))
323c5de1 2308 break;
2309
2310 cgiSetArray("PRINTER_EXPORT", i, j < export_count ? "Y" : "");
2311 }
2312 }
2313 }
2314
2315 /*
2316 * Export or get the printers to export...
2317 */
ef416fc2 2318
323c5de1 2319 if (username && *username && password && *password &&
2320 (export_all || export_count > 0))
2321 {
ef416fc2 2322 /*
323c5de1 2323 * Do export...
ef416fc2 2324 */
2325
323c5de1 2326 fputs("DEBUG: Export printers...\n", stderr);
ef416fc2 2327
323c5de1 2328 if (export_all)
ef416fc2 2329 {
323c5de1 2330 name = "PRINTER_NAME";
2331 export_count = cgiGetSize("PRINTER_NAME");
ef416fc2 2332 }
2333 else
323c5de1 2334 name = "EXPORT_NAME";
ef416fc2 2335
323c5de1 2336 for (i = 0; i < export_count; i ++)
2337 {
2338 dest = cgiGetArray(name, i);
ef416fc2 2339
323c5de1 2340 if (!cupsAdminCreateWindowsPPD(http, dest, ppd, sizeof(ppd)))
2341 break;
fa73b229 2342
323c5de1 2343 j = cupsAdminExportSamba(dest, ppd, "localhost", username, password,
2344 stderr);
ef416fc2 2345
323c5de1 2346 unlink(ppd);
ef416fc2 2347
323c5de1 2348 if (!j)
2349 break;
ef416fc2 2350 }
2351
323c5de1 2352 if (i < export_count)
2353 cgiSetVariable("ERROR", cupsLastErrorString());
2354 else
2355 {
2356 cgiStartHTML(cgiText(_("Export Printers to Samba")));
2357 cgiCopyTemplateLang("samba-exported.tmpl");
2358 cgiEndHTML();
2359 return;
2360 }
ef416fc2 2361 }
323c5de1 2362 else if (username && !*username)
2363 cgiSetVariable("ERROR",
2364 cgiText(_("A Samba username is required to export "
4d301e69 2365 "printer drivers")));
323c5de1 2366 else if (username && (!password || !*password))
2367 cgiSetVariable("ERROR",
2368 cgiText(_("A Samba password is required to export "
4d301e69 2369 "printer drivers")));
323c5de1 2370
2371 /*
2372 * Show form...
2373 */
ef416fc2 2374
323c5de1 2375 cgiStartHTML(cgiText(_("Export Printers to Samba")));
2376 cgiCopyTemplateLang("samba-export.tmpl");
2377 cgiEndHTML();
ef416fc2 2378}
2379
2380
2381/*
749b1e90 2382 * 'do_list_printers()' - List available printers.
ef416fc2 2383 */
2384
2385static void
323c5de1 2386do_list_printers(http_t *http) /* I - HTTP connection */
ef416fc2 2387{
323c5de1 2388 ipp_t *request, /* IPP request */
2389 *response; /* IPP response */
2390 ipp_attribute_t *attr; /* IPP attribute */
ef416fc2 2391
757d2cad 2392
323c5de1 2393 cgiStartHTML(cgiText(_("List Available Printers")));
2394 fflush(stdout);
2395
2396 /*
2397 * Get the list of printers and their devices...
2398 */
2399
2400 request = ippNewRequest(CUPS_GET_PRINTERS);
2401
2402 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2403 "requested-attributes", NULL, "device-uri");
2404
2405 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM, "printer-type",
2406 CUPS_PRINTER_LOCAL);
2407 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_ENUM, "printer-type-mask",
2408 CUPS_PRINTER_LOCAL);
757d2cad 2409
323c5de1 2410 if ((response = cupsDoRequest(http, request, "/")) != NULL)
2411 {
d09495fa 2412 /*
323c5de1 2413 * Got the printer list, now load the devices...
d09495fa 2414 */
2415
323c5de1 2416 int i; /* Looping var */
2417 cups_array_t *printer_devices; /* Printer devices for local printers */
2418 char *printer_device; /* Current printer device */
7594b224 2419
d09495fa 2420
2421 /*
323c5de1 2422 * Allocate an array and copy the device strings...
d09495fa 2423 */
2424
323c5de1 2425 printer_devices = cupsArrayNew((cups_array_func_t)strcmp, NULL);
2426
2427 for (attr = ippFindAttribute(response, "device-uri", IPP_TAG_URI);
2428 attr;
2429 attr = ippFindNextAttribute(response, "device-uri", IPP_TAG_URI))
ef416fc2 2430 {
cc754834 2431 cupsArrayAdd(printer_devices, _cupsStrAlloc(attr->values[0].string.text));
d09495fa 2432 }
2433
2434 /*
323c5de1 2435 * Free the printer list and get the device list...
d09495fa 2436 */
2437
323c5de1 2438 ippDelete(response);
d09495fa 2439
323c5de1 2440 request = ippNewRequest(CUPS_GET_DEVICES);
d09495fa 2441
323c5de1 2442 if ((response = cupsDoRequest(http, request, "/")) != NULL)
ef416fc2 2443 {
d09495fa 2444 /*
323c5de1 2445 * Got the device list, let's parse it...
d09495fa 2446 */
2447
323c5de1 2448 const char *device_uri, /* device-uri attribute value */
2449 *device_make_and_model, /* device-make-and-model value */
2450 *device_info; /* device-info value */
ef416fc2 2451
ef416fc2 2452
323c5de1 2453 for (i = 0, attr = response->attrs; attr; attr = attr->next)
2454 {
2455 /*
2456 * Skip leading attributes until we hit a device...
2457 */
ef416fc2 2458
323c5de1 2459 while (attr && attr->group_tag != IPP_TAG_PRINTER)
2460 attr = attr->next;
ef416fc2 2461
323c5de1 2462 if (!attr)
2463 break;
ef416fc2 2464
323c5de1 2465 /*
2466 * Pull the needed attributes from this device...
2467 */
ef416fc2 2468
323c5de1 2469 device_info = NULL;
2470 device_make_and_model = NULL;
2471 device_uri = NULL;
ef416fc2 2472
323c5de1 2473 while (attr && attr->group_tag == IPP_TAG_PRINTER)
2474 {
2475 if (!strcmp(attr->name, "device-info") &&
2476 attr->value_tag == IPP_TAG_TEXT)
2477 device_info = attr->values[0].string.text;
ef416fc2 2478
323c5de1 2479 if (!strcmp(attr->name, "device-make-and-model") &&
2480 attr->value_tag == IPP_TAG_TEXT)
2481 device_make_and_model = attr->values[0].string.text;
ef416fc2 2482
323c5de1 2483 if (!strcmp(attr->name, "device-uri") &&
2484 attr->value_tag == IPP_TAG_URI)
2485 device_uri = attr->values[0].string.text;
ef416fc2 2486
323c5de1 2487 attr = attr->next;
2488 }
ef416fc2 2489
323c5de1 2490 /*
2491 * See if we have everything needed...
2492 */
ef416fc2 2493
323c5de1 2494 if (device_info && device_make_and_model && device_uri &&
88f9aafc 2495 _cups_strcasecmp(device_make_and_model, "unknown") &&
323c5de1 2496 strchr(device_uri, ':'))
2497 {
2498 /*
2499 * Yes, now see if there is already a printer for this
2500 * device...
2501 */
ef416fc2 2502
323c5de1 2503 if (!cupsArrayFind(printer_devices, (void *)device_uri))
2504 {
2505 /*
2506 * Not found, so it must be a new printer...
2507 */
ef416fc2 2508
2e4ff8af
MS
2509 char option[1024], /* Form variables for this device */
2510 *option_ptr; /* Pointer into string */
323c5de1 2511 const char *ptr; /* Pointer into device string */
ef416fc2 2512
fa73b229 2513
323c5de1 2514 /*
2515 * Format the printer name variable for this device...
2516 *
2517 * We use the device-info string first, then device-uri,
2518 * and finally device-make-and-model to come up with a
2519 * suitable name.
2520 */
ef416fc2 2521
88f9aafc 2522 if (_cups_strncasecmp(device_info, "unknown", 7))
323c5de1 2523 ptr = device_info;
2524 else if ((ptr = strstr(device_uri, "://")) != NULL)
2525 ptr += 3;
2526 else
2527 ptr = device_make_and_model;
ef416fc2 2528
2e4ff8af
MS
2529 for (option_ptr = option;
2530 option_ptr < (option + sizeof(option) - 1) && *ptr;
323c5de1 2531 ptr ++)
2532 if (isalnum(*ptr & 255) || *ptr == '_' || *ptr == '-' ||
2533 *ptr == '.')
2e4ff8af 2534 *option_ptr++ = *ptr;
e60ec91f
MS
2535 else if ((*ptr == ' ' || *ptr == '/') && option_ptr > option &&
2536 option_ptr[-1] != '_')
2e4ff8af 2537 *option_ptr++ = '_';
323c5de1 2538 else if (*ptr == '?' || *ptr == '(')
2539 break;
ef416fc2 2540
2e4ff8af 2541 *option_ptr = '\0';
ef416fc2 2542
2e4ff8af 2543 cgiSetArray("TEMPLATE_NAME", i, option);
ef416fc2 2544
323c5de1 2545 /*
2546 * Finally, set the form variables for this printer...
2547 */
ef416fc2 2548
323c5de1 2549 cgiSetArray("device_info", i, device_info);
2550 cgiSetArray("device_make_and_model", i, device_make_and_model);
323c5de1 2551 cgiSetArray("device_uri", i, device_uri);
2552 i ++;
2553 }
2554 }
ef416fc2 2555
323c5de1 2556 if (!attr)
2557 break;
2558 }
2559
2560 ippDelete(response);
ef416fc2 2561
ef416fc2 2562 /*
323c5de1 2563 * Free the device list...
ef416fc2 2564 */
2565
323c5de1 2566 for (printer_device = (char *)cupsArrayFirst(printer_devices);
2567 printer_device;
2568 printer_device = (char *)cupsArrayNext(printer_devices))
cc754834 2569 _cupsStrFree(printer_device);
ef416fc2 2570
323c5de1 2571 cupsArrayDelete(printer_devices);
ef416fc2 2572 }
323c5de1 2573 }
ef416fc2 2574
323c5de1 2575 /*
2576 * Finally, show the printer list...
2577 */
ef416fc2 2578
323c5de1 2579 cgiCopyTemplateLang("list-available-printers.tmpl");
ef416fc2 2580
323c5de1 2581 cgiEndHTML();
ef416fc2 2582}
2583
2584
2585/*
749b1e90 2586 * 'do_menu()' - Show the main menu.
ef416fc2 2587 */
2588
2589static void
323c5de1 2590do_menu(http_t *http) /* I - HTTP connection */
ef416fc2 2591{
323c5de1 2592 int num_settings; /* Number of server settings */
2593 cups_option_t *settings; /* Server settings */
2594 const char *val; /* Setting value */
2595 char filename[1024]; /* Temporary filename */
2596 const char *datadir; /* Location of data files */
2597 ipp_t *request, /* IPP request */
2598 *response; /* IPP response */
ef416fc2 2599
2600
89d46774 2601 /*
323c5de1 2602 * Get the current server settings...
89d46774 2603 */
fa73b229 2604
323c5de1 2605 if (!cupsAdminGetServerSettings(http, &num_settings, &settings))
ef416fc2 2606 {
323c5de1 2607 cgiSetVariable("SETTINGS_MESSAGE",
2608 cgiText(_("Unable to open cupsd.conf file:")));
2609 cgiSetVariable("SETTINGS_ERROR", cupsLastErrorString());
ef416fc2 2610 }
2611
323c5de1 2612 if ((val = cupsGetOption(CUPS_SERVER_DEBUG_LOGGING, num_settings,
2613 settings)) != NULL && atoi(val))
2614 cgiSetVariable("DEBUG_LOGGING", "CHECKED");
ef416fc2 2615
323c5de1 2616 if ((val = cupsGetOption(CUPS_SERVER_REMOTE_ADMIN, num_settings,
2617 settings)) != NULL && atoi(val))
2618 cgiSetVariable("REMOTE_ADMIN", "CHECKED");
ef416fc2 2619
323c5de1 2620 if ((val = cupsGetOption(CUPS_SERVER_REMOTE_ANY, num_settings,
2621 settings)) != NULL && atoi(val))
2622 cgiSetVariable("REMOTE_ANY", "CHECKED");
ef416fc2 2623
323c5de1 2624 if ((val = cupsGetOption(CUPS_SERVER_SHARE_PRINTERS, num_settings,
2625 settings)) != NULL && atoi(val))
2626 cgiSetVariable("SHARE_PRINTERS", "CHECKED");
ef416fc2 2627
323c5de1 2628 if ((val = cupsGetOption(CUPS_SERVER_USER_CANCEL_ANY, num_settings,
2629 settings)) != NULL && atoi(val))
2630 cgiSetVariable("USER_CANCEL_ANY", "CHECKED");
2631
2632#ifdef HAVE_GSSAPI
2633 cgiSetVariable("HAVE_GSSAPI", "1");
2634
2635 if ((val = cupsGetOption("DefaultAuthType", num_settings,
88f9aafc 2636 settings)) != NULL && !_cups_strcasecmp(val, "Negotiate"))
323c5de1 2637 cgiSetVariable("KERBEROS", "CHECKED");
ef55b745 2638 else
323c5de1 2639#endif /* HAVE_GSSAPI */
ef55b745 2640 cgiSetVariable("KERBEROS", "");
323c5de1 2641
0af14961
MS
2642 if ((val = cupsGetOption("BrowseWebIF", num_settings,
2643 settings)) == NULL)
2644 val = "No";
2645
88f9aafc
MS
2646 if (!_cups_strcasecmp(val, "yes") || !_cups_strcasecmp(val, "on") ||
2647 !_cups_strcasecmp(val, "true"))
0af14961
MS
2648 cgiSetVariable("BROWSE_WEB_IF", "CHECKED");
2649
2650 if ((val = cupsGetOption("PreserveJobHistory", num_settings,
2651 settings)) == NULL)
2652 val = "Yes";
2653
82cc1f9a
MS
2654 if (val &&
2655 (!_cups_strcasecmp(val, "0") || !_cups_strcasecmp(val, "no") ||
2656 !_cups_strcasecmp(val, "off") || !_cups_strcasecmp(val, "false") ||
2657 !_cups_strcasecmp(val, "disabled")))
0af14961 2658 {
82cc1f9a
MS
2659 cgiSetVariable("PRESERVE_JOB_HISTORY", "0");
2660 cgiSetVariable("PRESERVE_JOB_FILES", "0");
2661 }
2662 else
2663 {
2664 cgiSetVariable("PRESERVE_JOBS", "CHECKED");
2665 cgiSetVariable("PRESERVE_JOB_HISTORY", val);
0af14961
MS
2666
2667 if ((val = cupsGetOption("PreserveJobFiles", num_settings,
2668 settings)) == NULL)
82cc1f9a
MS
2669 val = "1d";
2670
2671 cgiSetVariable("PRESERVE_JOB_FILES", val);
0af14961 2672
0af14961
MS
2673 }
2674
1f6f3dbc
MS
2675 if ((val = cupsGetOption("MaxClients", num_settings, settings)) == NULL)
2676 val = "100";
2677
2678 cgiSetVariable("MAX_CLIENTS", val);
2679
0af14961
MS
2680 if ((val = cupsGetOption("MaxJobs", num_settings, settings)) == NULL)
2681 val = "500";
2682
2683 cgiSetVariable("MAX_JOBS", val);
2684
2685 if ((val = cupsGetOption("MaxLogSize", num_settings, settings)) == NULL)
2686 val = "1m";
2687
2688 cgiSetVariable("MAX_LOG_SIZE", val);
2689
323c5de1 2690 cupsFreeOptions(num_settings, settings);
ef416fc2 2691
89d46774 2692 /*
323c5de1 2693 * See if Samba and the Windows drivers are installed...
89d46774 2694 */
2695
323c5de1 2696 if ((datadir = getenv("CUPS_DATADIR")) == NULL)
2697 datadir = CUPS_DATADIR;
2698
2699 snprintf(filename, sizeof(filename), "%s/drivers/pscript5.dll", datadir);
2700 if (!access(filename, R_OK))
f7deaa1a 2701 {
2702 /*
323c5de1 2703 * Found Windows 2000 driver file, see if we have smbclient and
2704 * rpcclient...
f7deaa1a 2705 */
2706
323c5de1 2707 if (cupsFileFind("smbclient", getenv("PATH"), 1, filename,
2708 sizeof(filename)) &&
2709 cupsFileFind("rpcclient", getenv("PATH"), 1, filename,
2710 sizeof(filename)))
2711 cgiSetVariable("HAVE_SAMBA", "Y");
2712 else
2713 {
2714 if (!cupsFileFind("smbclient", getenv("PATH"), 1, filename,
2715 sizeof(filename)))
2716 fputs("ERROR: smbclient not found!\n", stderr);
2717
2718 if (!cupsFileFind("rpcclient", getenv("PATH"), 1, filename,
2719 sizeof(filename)))
2720 fputs("ERROR: rpcclient not found!\n", stderr);
2721 }
f7deaa1a 2722 }
323c5de1 2723 else
2724 perror(filename);
f7deaa1a 2725
323c5de1 2726 /*
2727 * Subscriptions...
2728 */
89d46774 2729
323c5de1 2730 request = ippNewRequest(IPP_GET_SUBSCRIPTIONS);
2731
2732 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2733 NULL, "ipp://localhost/");
2734
2735 if ((response = cupsDoRequest(http, request, "/")) != NULL)
2736 {
2737 cgiSetIPPVars(response, NULL, NULL, NULL, 0);
2738 ippDelete(response);
2739 }
2740
2741 /*
2742 * Finally, show the main menu template...
2743 */
2744
2745 cgiStartHTML(cgiText(_("Administration")));
2746
2747 cgiCopyTemplateLang("admin.tmpl");
ef416fc2 2748
2749 cgiEndHTML();
2750}
2751
2752
fa73b229 2753/*
323c5de1 2754 * 'do_set_allowed_users()' - Set the allowed/denied users for a queue.
fa73b229 2755 */
2756
2757static void
323c5de1 2758do_set_allowed_users(http_t *http) /* I - HTTP connection */
fa73b229 2759{
323c5de1 2760 int i; /* Looping var */
fa73b229 2761 ipp_t *request, /* IPP request */
2762 *response; /* IPP response */
323c5de1 2763 char uri[HTTP_MAX_URI]; /* Printer URI */
2764 const char *printer, /* Printer name (purge-jobs) */
2765 *is_class, /* Is a class? */
2766 *users, /* List of users or groups */
2767 *type; /* Allow/deny type */
2768 int num_users; /* Number of users */
2769 char *ptr, /* Pointer into users string */
2770 *end, /* Pointer to end of users string */
2771 quote; /* Quote character */
2772 ipp_attribute_t *attr; /* Attribute */
2773 static const char * const attrs[] = /* Requested attributes */
2774 {
2775 "requesting-user-name-allowed",
2776 "requesting-user-name-denied"
2777 };
fa73b229 2778
fa73b229 2779
323c5de1 2780 is_class = cgiGetVariable("IS_CLASS");
2781 printer = cgiGetVariable("PRINTER_NAME");
fa73b229 2782
323c5de1 2783 if (!printer)
2784 {
4d301e69 2785 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
323c5de1 2786 cgiStartHTML(cgiText(_("Set Allowed Users")));
2787 cgiCopyTemplateLang("error.tmpl");
2788 cgiEndHTML();
2789 return;
2790 }
ef416fc2 2791
323c5de1 2792 users = cgiGetVariable("users");
2793 type = cgiGetVariable("type");
ef416fc2 2794
323c5de1 2795 if (!users || !type ||
2796 (strcmp(type, "requesting-user-name-allowed") &&
2797 strcmp(type, "requesting-user-name-denied")))
2798 {
2799 /*
2800 * Build a Get-Printer-Attributes request, which requires the following
2801 * attributes:
2802 *
2803 * attributes-charset
2804 * attributes-natural-language
2805 * printer-uri
2806 * requested-attributes
2807 */
fa73b229 2808
323c5de1 2809 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
fa73b229 2810
323c5de1 2811 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
2812 "localhost", 0, is_class ? "/classes/%s" : "/printers/%s",
2813 printer);
2814 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2815 NULL, uri);
fa73b229 2816
323c5de1 2817 ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD,
2818 "requested-attributes",
2819 (int)(sizeof(attrs) / sizeof(attrs[0])), NULL, attrs);
fa73b229 2820
323c5de1 2821 /*
2822 * Do the request and get back a response...
2823 */
fa73b229 2824
323c5de1 2825 if ((response = cupsDoRequest(http, request, "/")) != NULL)
fa73b229 2826 {
323c5de1 2827 cgiSetIPPVars(response, NULL, NULL, NULL, 0);
fa73b229 2828
323c5de1 2829 ippDelete(response);
fa73b229 2830 }
ef416fc2 2831
323c5de1 2832 cgiStartHTML(cgiText(_("Set Allowed Users")));
757d2cad 2833
355e94dc
MS
2834 if (cupsLastError() == IPP_NOT_AUTHORIZED)
2835 {
2836 puts("Status: 401\n");
2837 exit(0);
2838 }
2839 else if (cupsLastError() > IPP_OK_CONFLICT)
f3c17241 2840 cgiShowIPPError(_("Unable to get printer attributes"));
323c5de1 2841 else
2842 cgiCopyTemplateLang("users.tmpl");
2843
2844 cgiEndHTML();
2845 }
2846 else
757d2cad 2847 {
2848 /*
323c5de1 2849 * Save the changes...
757d2cad 2850 */
2851
323c5de1 2852 for (num_users = 0, ptr = (char *)users; *ptr; num_users ++)
757d2cad 2853 {
323c5de1 2854 /*
2855 * Skip whitespace and commas...
2856 */
fa73b229 2857
323c5de1 2858 while (*ptr == ',' || isspace(*ptr & 255))
2859 ptr ++;
ef416fc2 2860
1f6f3dbc
MS
2861 if (!*ptr)
2862 break;
2863
323c5de1 2864 if (*ptr == '\'' || *ptr == '\"')
2865 {
2866 /*
2867 * Scan quoted name...
2868 */
ef416fc2 2869
323c5de1 2870 quote = *ptr++;
ef416fc2 2871
323c5de1 2872 for (end = ptr; *end; end ++)
2873 if (*end == quote)
2874 break;
2875 }
2876 else
2877 {
2878 /*
2879 * Scan space or comma-delimited name...
2880 */
ef416fc2 2881
323c5de1 2882 for (end = ptr; *end; end ++)
2883 if (isspace(*end & 255) || *end == ',')
2884 break;
2885 }
ef416fc2 2886
323c5de1 2887 /*
2888 * Advance to the next name...
2889 */
ef416fc2 2890
323c5de1 2891 ptr = end;
2892 }
ef416fc2 2893
323c5de1 2894 /*
2895 * Build a CUPS-Add-Printer/Class request, which requires the following
2896 * attributes:
2897 *
2898 * attributes-charset
2899 * attributes-natural-language
2900 * printer-uri
2901 * requesting-user-name-{allowed,denied}
2902 */
ef416fc2 2903
323c5de1 2904 request = ippNewRequest(is_class ? CUPS_ADD_CLASS : CUPS_ADD_PRINTER);
ef416fc2 2905
323c5de1 2906 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
2907 "localhost", 0, is_class ? "/classes/%s" : "/printers/%s",
2908 printer);
2909 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
2910 NULL, uri);
f7deaa1a 2911
323c5de1 2912 if (num_users == 0)
2913 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_NAME,
2914 "requesting-user-name-allowed", NULL, "all");
2915 else
2916 {
2917 attr = ippAddStrings(request, IPP_TAG_PRINTER, IPP_TAG_NAME,
2918 type, num_users, NULL, NULL);
ef416fc2 2919
323c5de1 2920 for (i = 0, ptr = (char *)users; *ptr; i ++)
2921 {
2922 /*
2923 * Skip whitespace and commas...
2924 */
ef416fc2 2925
323c5de1 2926 while (*ptr == ',' || isspace(*ptr & 255))
2927 ptr ++;
ef416fc2 2928
1f6f3dbc
MS
2929 if (!*ptr)
2930 break;
2931
323c5de1 2932 if (*ptr == '\'' || *ptr == '\"')
2933 {
2934 /*
2935 * Scan quoted name...
2936 */
7594b224 2937
323c5de1 2938 quote = *ptr++;
7594b224 2939
323c5de1 2940 for (end = ptr; *end; end ++)
2941 if (*end == quote)
2942 break;
2943 }
2944 else
2945 {
2946 /*
2947 * Scan space or comma-delimited name...
2948 */
480ef0fe 2949
323c5de1 2950 for (end = ptr; *end; end ++)
2951 if (isspace(*end & 255) || *end == ',')
2952 break;
2953 }
ef416fc2 2954
323c5de1 2955 /*
2956 * Terminate the name...
2957 */
ef416fc2 2958
323c5de1 2959 if (*end)
2960 *end++ = '\0';
ef416fc2 2961
323c5de1 2962 /*
2963 * Add the name...
2964 */
ef416fc2 2965
cc754834 2966 attr->values[i].string.text = _cupsStrAlloc(ptr);
ef416fc2 2967
323c5de1 2968 /*
2969 * Advance to the next name...
2970 */
ef416fc2 2971
323c5de1 2972 ptr = end;
2973 }
2974 }
ef416fc2 2975
2976 /*
323c5de1 2977 * Do the request and get back a response...
ef416fc2 2978 */
2979
323c5de1 2980 ippDelete(cupsDoRequest(http, request, "/admin/"));
ef416fc2 2981
355e94dc
MS
2982 if (cupsLastError() == IPP_NOT_AUTHORIZED)
2983 {
2984 puts("Status: 401\n");
2985 exit(0);
2986 }
2987 else if (cupsLastError() > IPP_OK_CONFLICT)
ef416fc2 2988 {
323c5de1 2989 cgiStartHTML(cgiText(_("Set Allowed Users")));
f3c17241 2990 cgiShowIPPError(_("Unable to change printer"));
ef416fc2 2991 }
323c5de1 2992 else
ef416fc2 2993 {
2994 /*
323c5de1 2995 * Redirect successful updates back to the printer page...
ef416fc2 2996 */
2997
323c5de1 2998 char url[1024], /* Printer/class URL */
2999 refresh[1024]; /* Refresh URL */
ef416fc2 3000
3001
323c5de1 3002 cgiRewriteURL(uri, url, sizeof(url), NULL);
3003 cgiFormEncode(uri, url, sizeof(uri));
3004 snprintf(refresh, sizeof(refresh), "5;URL=/admin/?OP=redirect&URL=%s",
3005 uri);
3006 cgiSetVariable("refresh_page", refresh);
ef416fc2 3007
323c5de1 3008 cgiStartHTML(cgiText(_("Set Allowed Users")));
ef416fc2 3009
323c5de1 3010 cgiCopyTemplateLang(is_class ? "class-modified.tmpl" :
3011 "printer-modified.tmpl");
3012 }
ef416fc2 3013
323c5de1 3014 cgiEndHTML();
3015 }
3016}
ef416fc2 3017
ef416fc2 3018
58dc1933
MS
3019/*
3020 * 'do_set_default()' - Set the server default printer/class.
3021 */
3022
3023static void
3024do_set_default(http_t *http) /* I - HTTP connection */
3025{
3026 const char *title; /* Page title */
3027 ipp_t *request; /* IPP request */
3028 char uri[HTTP_MAX_URI]; /* Printer URI */
3029 const char *printer, /* Printer name (purge-jobs) */
3030 *is_class; /* Is a class? */
3031
3032
3033 is_class = cgiGetVariable("IS_CLASS");
3034 printer = cgiGetVariable("PRINTER_NAME");
3035 title = cgiText(_("Set As Server Default"));
3036
3037 if (!printer)
3038 {
4d301e69 3039 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
58dc1933
MS
3040 cgiStartHTML(title);
3041 cgiCopyTemplateLang("error.tmpl");
3042 cgiEndHTML();
3043 return;
3044 }
3045
3046 /*
3047 * Build a printer request, which requires the following
3048 * attributes:
3049 *
3050 * attributes-charset
3051 * attributes-natural-language
3052 * printer-uri
3053 */
3054
3055 request = ippNewRequest(CUPS_SET_DEFAULT);
3056
3057 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
3058 "localhost", 0, is_class ? "/classes/%s" : "/printers/%s",
3059 printer);
3060 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
3061 NULL, uri);
3062
3063 /*
3064 * Do the request and get back a response...
3065 */
3066
3067 ippDelete(cupsDoRequest(http, request, "/admin/"));
3068
3069 if (cupsLastError() == IPP_NOT_AUTHORIZED)
3070 {
3071 puts("Status: 401\n");
3072 exit(0);
3073 }
3074 else if (cupsLastError() > IPP_OK_CONFLICT)
3075 {
3076 cgiStartHTML(title);
f3c17241 3077 cgiShowIPPError(_("Unable to set server default"));
58dc1933
MS
3078 }
3079 else
3080 {
3081 /*
3082 * Redirect successful updates back to the printer page...
3083 */
3084
3085 char url[1024], /* Printer/class URL */
3086 refresh[1024]; /* Refresh URL */
3087
3088
3089 cgiRewriteURL(uri, url, sizeof(url), NULL);
3090 cgiFormEncode(uri, url, sizeof(uri));
3091 snprintf(refresh, sizeof(refresh), "5;URL=/admin/?OP=redirect&URL=%s", uri);
3092 cgiSetVariable("refresh_page", refresh);
3093
3094 cgiStartHTML(title);
3095 cgiCopyTemplateLang("printer-default.tmpl");
3096 }
3097
3098 cgiEndHTML();
3099}
3100
3101
323c5de1 3102/*
3103 * 'do_set_options()' - Configure the default options for a queue.
3104 */
ef416fc2 3105
323c5de1 3106static void
3107do_set_options(http_t *http, /* I - HTTP connection */
3108 int is_class) /* I - Set options for class? */
3109{
3110 int i, j, k, m; /* Looping vars */
3111 int have_options; /* Have options? */
3112 ipp_t *request, /* IPP request */
3113 *response; /* IPP response */
3114 ipp_attribute_t *attr; /* IPP attribute */
3115 char uri[HTTP_MAX_URI]; /* Job URI */
3116 const char *var; /* Variable value */
3117 const char *printer; /* Printer printer name */
3118 const char *filename; /* PPD filename */
3119 char tempfile[1024]; /* Temporary filename */
3120 cups_file_t *in, /* Input file */
3121 *out; /* Output file */
749b1e90
MS
3122 char line[1024], /* Line from PPD file */
3123 value[1024], /* Option value */
3124 keyword[1024], /* Keyword from Default line */
323c5de1 3125 *keyptr; /* Pointer into keyword... */
3126 ppd_file_t *ppd; /* PPD file */
3127 ppd_group_t *group; /* Option group */
3128 ppd_option_t *option; /* Option */
749b1e90
MS
3129 ppd_coption_t *coption; /* Custom option */
3130 ppd_cparam_t *cparam; /* Custom parameter */
1f6f3dbc 3131 ppd_attr_t *ppdattr; /* PPD attribute */
323c5de1 3132 const char *title; /* Page title */
ef416fc2 3133
ef416fc2 3134
323c5de1 3135 title = cgiText(is_class ? _("Set Class Options") : _("Set Printer Options"));
ef416fc2 3136
323c5de1 3137 fprintf(stderr, "DEBUG: do_set_options(http=%p, is_class=%d)\n", http,
3138 is_class);
ef416fc2 3139
323c5de1 3140 /*
3141 * Get the printer name...
3142 */
ef416fc2 3143
323c5de1 3144 if ((printer = cgiGetVariable("PRINTER_NAME")) != NULL)
3145 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
3146 "localhost", 0, is_class ? "/classes/%s" : "/printers/%s",
3147 printer);
3148 else
3149 {
4d301e69 3150 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
323c5de1 3151 cgiStartHTML(title);
3152 cgiCopyTemplateLang("error.tmpl");
3153 cgiEndHTML();
3154 return;
3155 }
ef416fc2 3156
323c5de1 3157 fprintf(stderr, "DEBUG: printer=\"%s\", uri=\"%s\"...\n", printer, uri);
ef416fc2 3158
1f6f3dbc
MS
3159 /*
3160 * If the user clicks on the Auto-Configure button, send an AutoConfigure
3161 * command file to the printer...
3162 */
3163
3164 if (cgiGetVariable("AUTOCONFIGURE"))
3165 {
58dc1933 3166 cgiPrintCommand(http, printer, "AutoConfigure", "Set Default Options");
1f6f3dbc
MS
3167 return;
3168 }
3169
323c5de1 3170 /*
3171 * Get the PPD file...
3172 */
ef416fc2 3173
323c5de1 3174 if (is_class)
3175 filename = NULL;
3176 else
3177 filename = cupsGetPPD2(http, printer);
ef416fc2 3178
323c5de1 3179 if (filename)
3180 {
3181 fprintf(stderr, "DEBUG: Got PPD file: \"%s\"\n", filename);
ef416fc2 3182
323c5de1 3183 if ((ppd = ppdOpenFile(filename)) == NULL)
3184 {
3185 cgiSetVariable("ERROR", ppdErrorString(ppdLastError(&i)));
f3c17241 3186 cgiSetVariable("MESSAGE", cgiText(_("Unable to open PPD file")));
323c5de1 3187 cgiStartHTML(title);
3188 cgiCopyTemplateLang("error.tmpl");
3189 cgiEndHTML();
3190 return;
3191 }
3192 }
3193 else
3194 {
3195 fputs("DEBUG: No PPD file\n", stderr);
3196 ppd = NULL;
3197 }
ef416fc2 3198
323c5de1 3199 if (cgiGetVariable("job_sheets_start") != NULL ||
3200 cgiGetVariable("job_sheets_end") != NULL)
3201 have_options = 1;
3202 else
3203 have_options = 0;
ef416fc2 3204
323c5de1 3205 if (ppd)
3206 {
3207 ppdMarkDefaults(ppd);
ef416fc2 3208
749b1e90
MS
3209 for (option = ppdFirstOption(ppd);
3210 option;
3211 option = ppdNextOption(ppd))
ef55b745 3212 {
749b1e90
MS
3213 if ((var = cgiGetVariable(option->keyword)) != NULL)
3214 {
3215 have_options = 1;
3216 ppdMarkOption(ppd, option->keyword, var);
ef55b745 3217 fprintf(stderr, "DEBUG: Set %s to %s...\n", option->keyword, var);
749b1e90 3218 }
ef55b745
MS
3219 else
3220 fprintf(stderr, "DEBUG: Didn't find %s...\n", option->keyword);
3221 }
323c5de1 3222 }
fa73b229 3223
323c5de1 3224 if (!have_options || ppdConflicts(ppd))
fa73b229 3225 {
3226 /*
323c5de1 3227 * Show the options to the user...
fa73b229 3228 */
3229
323c5de1 3230 fputs("DEBUG: Showing options...\n", stderr);
fa73b229 3231
58dc1933
MS
3232 /*
3233 * Show auto-configure button if supported...
3234 */
3235
1f6f3dbc
MS
3236 if (ppd)
3237 {
3238 if (ppd->num_filters == 0 ||
3239 ((ppdattr = ppdFindAttr(ppd, "cupsCommands", NULL)) != NULL &&
3240 ppdattr->value && strstr(ppdattr->value, "AutoConfigure")))
3241 cgiSetVariable("HAVE_AUTOCONFIGURE", "YES");
ef55b745 3242 else
1f6f3dbc
MS
3243 {
3244 for (i = 0; i < ppd->num_filters; i ++)
3245 if (!strncmp(ppd->filters[i], "application/vnd.cups-postscript", 31))
3246 {
3247 cgiSetVariable("HAVE_AUTOCONFIGURE", "YES");
3248 break;
3249 }
3250 }
3251 }
3252
58dc1933
MS
3253 /*
3254 * Get the printer attributes...
3255 */
3256
3257 request = ippNewRequest(IPP_GET_PRINTER_ATTRIBUTES);
3258
3259 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
3260 "localhost", 0, "/printers/%s", printer);
3261 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
3262 NULL, uri);
3263
3264 response = cupsDoRequest(http, request, "/");
3265
3266 /*
3267 * List the groups used as "tabs"...
3268 */
3269
3270 i = 0;
3271
3272 if (ppd)
3273 {
3274 for (group = ppd->groups;
3275 i < ppd->num_groups;
3276 i ++, group ++)
3277 {
3278 cgiSetArray("GROUP_ID", i, group->name);
3279
3280 if (!strcmp(group->name, "InstallableOptions"))
3281 cgiSetArray("GROUP", i, cgiText(_("Options Installed")));
3282 else
3283 cgiSetArray("GROUP", i, group->text);
3284 }
3285 }
3286
3287 if (ippFindAttribute(response, "job-sheets-supported", IPP_TAG_ZERO))
3288 {
3289 cgiSetArray("GROUP_ID", i, "CUPS_BANNERS");
3290 cgiSetArray("GROUP", i ++, cgiText(_("Banners")));
3291 }
3292
3293 if (ippFindAttribute(response, "printer-error-policy-supported",
3294 IPP_TAG_ZERO) ||
3295 ippFindAttribute(response, "printer-op-policy-supported",
3296 IPP_TAG_ZERO))
3297 {
3298 cgiSetArray("GROUP_ID", i, "CUPS_POLICIES");
3299 cgiSetArray("GROUP", i ++, cgiText(_("Policies")));
3300 }
3301
3302 if ((attr = ippFindAttribute(response, "port-monitor-supported",
3303 IPP_TAG_NAME)) != NULL && attr->num_values > 1)
3304 {
3305 cgiSetArray("GROUP_ID", i, "CUPS_PORT_MONITOR");
3306 cgiSetArray("GROUP", i, cgiText(_("Port Monitor")));
3307 }
3308
323c5de1 3309 cgiStartHTML(cgiText(_("Set Printer Options")));
3310 cgiCopyTemplateLang("set-printer-options-header.tmpl");
fa73b229 3311
323c5de1 3312 if (ppd)
3313 {
3314 ppdLocalize(ppd);
f7deaa1a 3315
323c5de1 3316 if (ppdConflicts(ppd))
3317 {
3318 for (i = ppd->num_groups, k = 0, group = ppd->groups;
3319 i > 0;
3320 i --, group ++)
3321 for (j = group->num_options, option = group->options;
3322 j > 0;
3323 j --, option ++)
3324 if (option->conflicted)
3325 {
3326 cgiSetArray("ckeyword", k, option->keyword);
3327 cgiSetArray("ckeytext", k, option->text);
ef55b745
MS
3328
3329 for (m = 0; m < option->num_choices; m ++)
3330 {
3331 if (option->choices[m].marked)
3332 {
3333 cgiSetArray("cchoice", k, option->choices[m].text);
3334 break;
3335 }
3336 }
3337
323c5de1 3338 k ++;
3339 }
f7deaa1a 3340
323c5de1 3341 cgiCopyTemplateLang("option-conflict.tmpl");
3342 }
f7deaa1a 3343
323c5de1 3344 for (i = ppd->num_groups, group = ppd->groups;
3345 i > 0;
3346 i --, group ++)
3347 {
7cf5915e
MS
3348 for (j = group->num_options, option = group->options;
3349 j > 0;
3350 j --, option ++)
3351 {
3352 if (!strcmp(option->keyword, "PageRegion"))
3353 continue;
3354
3355 if (option->num_choices > 1)
3356 break;
3357 }
3358
3359 if (j == 0)
3360 continue;
3361
58dc1933
MS
3362 cgiSetVariable("GROUP_ID", group->name);
3363
323c5de1 3364 if (!strcmp(group->name, "InstallableOptions"))
3365 cgiSetVariable("GROUP", cgiText(_("Options Installed")));
3366 else
3367 cgiSetVariable("GROUP", group->text);
f7deaa1a 3368
323c5de1 3369 cgiCopyTemplateLang("option-header.tmpl");
ef55b745 3370
323c5de1 3371 for (j = group->num_options, option = group->options;
3372 j > 0;
3373 j --, option ++)
3374 {
7cf5915e 3375 if (!strcmp(option->keyword, "PageRegion") || option->num_choices < 2)
323c5de1 3376 continue;
ef416fc2 3377
323c5de1 3378 cgiSetVariable("KEYWORD", option->keyword);
3379 cgiSetVariable("KEYTEXT", option->text);
749b1e90 3380
323c5de1 3381 if (option->conflicted)
3382 cgiSetVariable("CONFLICTED", "1");
3383 else
3384 cgiSetVariable("CONFLICTED", "0");
3385
3386 cgiSetSize("CHOICES", 0);
3387 cgiSetSize("TEXT", 0);
3388 for (k = 0, m = 0; k < option->num_choices; k ++)
3389 {
323c5de1 3390 cgiSetArray("CHOICES", m, option->choices[k].choice);
3391 cgiSetArray("TEXT", m, option->choices[k].text);
ef416fc2 3392
323c5de1 3393 m ++;
ef416fc2 3394
323c5de1 3395 if (option->choices[k].marked)
3396 cgiSetVariable("DEFCHOICE", option->choices[k].choice);
3397 }
ef416fc2 3398
749b1e90
MS
3399 cgiSetSize("PARAMS", 0);
3400 cgiSetSize("PARAMTEXT", 0);
3401 cgiSetSize("PARAMVALUE", 0);
3402 cgiSetSize("INPUTTYPE", 0);
3403
3404 if ((coption = ppdFindCustomOption(ppd, option->keyword)))
3405 {
3406 const char *units = NULL; /* Units value, if any */
3407
749b1e90
MS
3408 cgiSetVariable("ISCUSTOM", "1");
3409
3410 for (cparam = ppdFirstCustomParam(coption), m = 0;
3411 cparam;
3412 cparam = ppdNextCustomParam(coption), m ++)
3413 {
88f9aafc
MS
3414 if (!_cups_strcasecmp(option->keyword, "PageSize") &&
3415 _cups_strcasecmp(cparam->name, "Width") &&
3416 _cups_strcasecmp(cparam->name, "Height"))
749b1e90
MS
3417 {
3418 m --;
3419 continue;
3420 }
3421
3422 cgiSetArray("PARAMS", m, cparam->name);
3423 cgiSetArray("PARAMTEXT", m, cparam->text);
3424 cgiSetArray("INPUTTYPE", m, "text");
3425
3426 switch (cparam->type)
3427 {
3428 case PPD_CUSTOM_POINTS :
88f9aafc 3429 if (!_cups_strncasecmp(option->defchoice, "Custom.", 7))
749b1e90
MS
3430 {
3431 units = option->defchoice + strlen(option->defchoice) - 2;
3432
3433 if (strcmp(units, "mm") && strcmp(units, "cm") &&
3434 strcmp(units, "in") && strcmp(units, "ft"))
3435 {
3436 if (units[1] == 'm')
3437 units ++;
3438 else
3439 units = "pt";
3440 }
3441 }
3442 else
3443 units = "pt";
3444
3445 if (!strcmp(units, "mm"))
3446 snprintf(value, sizeof(value), "%g",
3447 cparam->current.custom_points / 72.0 * 25.4);
3448 else if (!strcmp(units, "cm"))
3449 snprintf(value, sizeof(value), "%g",
3450 cparam->current.custom_points / 72.0 * 2.54);
3451 else if (!strcmp(units, "in"))
3452 snprintf(value, sizeof(value), "%g",
3453 cparam->current.custom_points / 72.0);
3454 else if (!strcmp(units, "ft"))
3455 snprintf(value, sizeof(value), "%g",
3456 cparam->current.custom_points / 72.0 / 12.0);
3457 else if (!strcmp(units, "m"))
3458 snprintf(value, sizeof(value), "%g",
3459 cparam->current.custom_points / 72.0 * 0.0254);
3460 else
3461 snprintf(value, sizeof(value), "%g",
3462 cparam->current.custom_points);
3463 cgiSetArray("PARAMVALUE", m, value);
3464 break;
3465
3466 case PPD_CUSTOM_CURVE :
3467 case PPD_CUSTOM_INVCURVE :
3468 case PPD_CUSTOM_REAL :
3469 snprintf(value, sizeof(value), "%g",
3470 cparam->current.custom_real);
3471 cgiSetArray("PARAMVALUE", m, value);
3472 break;
3473
3474 case PPD_CUSTOM_INT:
3475 snprintf(value, sizeof(value), "%d",
3476 cparam->current.custom_int);
3477 cgiSetArray("PARAMVALUE", m, value);
3478 break;
3479
3480 case PPD_CUSTOM_PASSCODE:
3481 case PPD_CUSTOM_PASSWORD:
3482 if (cparam->current.custom_password)
3483 cgiSetArray("PARAMVALUE", m,
3484 cparam->current.custom_password);
3485 else
3486 cgiSetArray("PARAMVALUE", m, "");
3487 cgiSetArray("INPUTTYPE", m, "password");
3488 break;
3489
3490 case PPD_CUSTOM_STRING:
3491 if (cparam->current.custom_string)
3492 cgiSetArray("PARAMVALUE", m,
3493 cparam->current.custom_string);
3494 else
3495 cgiSetArray("PARAMVALUE", m, "");
3496 break;
3497 }
3498 }
3499
3500 if (units)
3501 {
3502 cgiSetArray("PARAMS", m, "Units");
3503 cgiSetArray("PARAMTEXT", m, cgiText(_("Units")));
3504 cgiSetArray("PARAMVALUE", m, units);
3505 }
3506 }
3507 else
3508 cgiSetVariable("ISCUSTOM", "0");
3509
323c5de1 3510 switch (option->ui)
3511 {
3512 case PPD_UI_BOOLEAN :
3513 cgiCopyTemplateLang("option-boolean.tmpl");
3514 break;
3515 case PPD_UI_PICKONE :
3516 cgiCopyTemplateLang("option-pickone.tmpl");
3517 break;
3518 case PPD_UI_PICKMANY :
3519 cgiCopyTemplateLang("option-pickmany.tmpl");
3520 break;
3521 }
3522 }
ef416fc2 3523
323c5de1 3524 cgiCopyTemplateLang("option-trailer.tmpl");
3525 }
3526 }
ef416fc2 3527
58dc1933
MS
3528 if ((attr = ippFindAttribute(response, "job-sheets-supported",
3529 IPP_TAG_ZERO)) != NULL)
3530 {
3531 /*
3532 * Add the job sheets options...
3533 */
fa73b229 3534
58dc1933
MS
3535 cgiSetVariable("GROUP_ID", "CUPS_BANNERS");
3536 cgiSetVariable("GROUP", cgiText(_("Banners")));
3537 cgiCopyTemplateLang("option-header.tmpl");
ef416fc2 3538
58dc1933
MS
3539 cgiSetSize("CHOICES", attr->num_values);
3540 cgiSetSize("TEXT", attr->num_values);
3541 for (k = 0; k < attr->num_values; k ++)
3542 {
3543 cgiSetArray("CHOICES", k, attr->values[k].string.text);
3544 cgiSetArray("TEXT", k, attr->values[k].string.text);
3545 }
ef416fc2 3546
58dc1933 3547 attr = ippFindAttribute(response, "job-sheets-default", IPP_TAG_ZERO);
ef416fc2 3548
58dc1933 3549 cgiSetVariable("KEYWORD", "job_sheets_start");
eac3a0a0
MS
3550 cgiSetVariable("KEYTEXT",
3551 /* TRANSLATORS: Banner/cover sheet before the print job. */
3552 cgiText(_("Starting Banner")));
58dc1933
MS
3553 cgiSetVariable("DEFCHOICE", attr != NULL ?
3554 attr->values[0].string.text : "");
3555
3556 cgiCopyTemplateLang("option-pickone.tmpl");
3557
3558 cgiSetVariable("KEYWORD", "job_sheets_end");
eac3a0a0
MS
3559 cgiSetVariable("KEYTEXT",
3560 /* TRANSLATORS: Banner/cover sheet after the print job. */
3561 cgiText(_("Ending Banner")));
58dc1933
MS
3562 cgiSetVariable("DEFCHOICE", attr != NULL && attr->num_values > 1 ?
3563 attr->values[1].string.text : "");
3564
3565 cgiCopyTemplateLang("option-pickone.tmpl");
3566
3567 cgiCopyTemplateLang("option-trailer.tmpl");
3568 }
3569
3570 if (ippFindAttribute(response, "printer-error-policy-supported",
3571 IPP_TAG_ZERO) ||
3572 ippFindAttribute(response, "printer-op-policy-supported",
3573 IPP_TAG_ZERO))
323c5de1 3574 {
58dc1933
MS
3575 /*
3576 * Add the error and operation policy options...
3577 */
ef416fc2 3578
58dc1933
MS
3579 cgiSetVariable("GROUP_ID", "CUPS_POLICIES");
3580 cgiSetVariable("GROUP", cgiText(_("Policies")));
3581 cgiCopyTemplateLang("option-header.tmpl");
3582
3583 /*
3584 * Error policy...
3585 */
ef416fc2 3586
58dc1933
MS
3587 attr = ippFindAttribute(response, "printer-error-policy-supported",
3588 IPP_TAG_ZERO);
3589
3590 if (attr)
3591 {
323c5de1 3592 cgiSetSize("CHOICES", attr->num_values);
3593 cgiSetSize("TEXT", attr->num_values);
3594 for (k = 0; k < attr->num_values; k ++)
3595 {
3596 cgiSetArray("CHOICES", k, attr->values[k].string.text);
3597 cgiSetArray("TEXT", k, attr->values[k].string.text);
3598 }
ef416fc2 3599
58dc1933
MS
3600 attr = ippFindAttribute(response, "printer-error-policy",
3601 IPP_TAG_ZERO);
ef416fc2 3602
58dc1933
MS
3603 cgiSetVariable("KEYWORD", "printer_error_policy");
3604 cgiSetVariable("KEYTEXT", cgiText(_("Error Policy")));
3605 cgiSetVariable("DEFCHOICE", attr == NULL ?
3606 "" : attr->values[0].string.text);
323c5de1 3607 }
ef416fc2 3608
58dc1933 3609 cgiCopyTemplateLang("option-pickone.tmpl");
ef416fc2 3610
58dc1933
MS
3611 /*
3612 * Operation policy...
3613 */
ef416fc2 3614
58dc1933
MS
3615 attr = ippFindAttribute(response, "printer-op-policy-supported",
3616 IPP_TAG_ZERO);
323c5de1 3617
58dc1933
MS
3618 if (attr)
3619 {
3620 cgiSetSize("CHOICES", attr->num_values);
3621 cgiSetSize("TEXT", attr->num_values);
3622 for (k = 0; k < attr->num_values; k ++)
323c5de1 3623 {
58dc1933
MS
3624 cgiSetArray("CHOICES", k, attr->values[k].string.text);
3625 cgiSetArray("TEXT", k, attr->values[k].string.text);
3626 }
ef416fc2 3627
58dc1933 3628 attr = ippFindAttribute(response, "printer-op-policy", IPP_TAG_ZERO);
ef416fc2 3629
58dc1933
MS
3630 cgiSetVariable("KEYWORD", "printer_op_policy");
3631 cgiSetVariable("KEYTEXT", cgiText(_("Operation Policy")));
3632 cgiSetVariable("DEFCHOICE", attr == NULL ?
3633 "" : attr->values[0].string.text);
fa73b229 3634
323c5de1 3635 cgiCopyTemplateLang("option-pickone.tmpl");
323c5de1 3636 }
ef416fc2 3637
58dc1933 3638 cgiCopyTemplateLang("option-trailer.tmpl");
ef416fc2 3639 }
ef416fc2 3640
ef416fc2 3641 /*
323c5de1 3642 * Binary protocol support...
ef416fc2 3643 */
3644
58dc1933
MS
3645 if ((attr = ippFindAttribute(response, "port-monitor-supported",
3646 IPP_TAG_NAME)) != NULL && attr->num_values > 1)
ef416fc2 3647 {
58dc1933
MS
3648 cgiSetVariable("GROUP_ID", "CUPS_PORT_MONITOR");
3649 cgiSetVariable("GROUP", cgiText(_("Port Monitor")));
ef416fc2 3650
58dc1933
MS
3651 cgiSetSize("CHOICES", attr->num_values);
3652 cgiSetSize("TEXT", attr->num_values);
ef416fc2 3653
58dc1933 3654 for (i = 0; i < attr->num_values; i ++)
ef416fc2 3655 {
58dc1933
MS
3656 cgiSetArray("CHOICES", i, attr->values[i].string.text);
3657 cgiSetArray("TEXT", i, attr->values[i].string.text);
ef416fc2 3658 }
3659
58dc1933
MS
3660 attr = ippFindAttribute(response, "port-monitor", IPP_TAG_NAME);
3661 cgiSetVariable("KEYWORD", "port_monitor");
3662 cgiSetVariable("KEYTEXT", cgiText(_("Port Monitor")));
3663 cgiSetVariable("DEFCHOICE", attr ? attr->values[0].string.text : "none");
ef416fc2 3664
58dc1933 3665 cgiCopyTemplateLang("option-header.tmpl");
323c5de1 3666 cgiCopyTemplateLang("option-pickone.tmpl");
323c5de1 3667 cgiCopyTemplateLang("option-trailer.tmpl");
ef416fc2 3668 }
3669
323c5de1 3670 cgiCopyTemplateLang("set-printer-options-trailer.tmpl");
3671 cgiEndHTML();
58dc1933
MS
3672
3673 ippDelete(response);
323c5de1 3674 }
3675 else
3676 {
ef416fc2 3677 /*
323c5de1 3678 * Set default options...
ef416fc2 3679 */
3680
323c5de1 3681 fputs("DEBUG: Setting options...\n", stderr);
ef416fc2 3682
323c5de1 3683 if (filename)
ef416fc2 3684 {
323c5de1 3685 out = cupsTempFile2(tempfile, sizeof(tempfile));
3686 in = cupsFileOpen(filename, "r");
ef416fc2 3687
323c5de1 3688 if (!in || !out)
ef416fc2 3689 {
323c5de1 3690 cgiSetVariable("ERROR", strerror(errno));
3691 cgiStartHTML(cgiText(_("Set Printer Options")));
3692 cgiCopyTemplateLang("error.tmpl");
3693 cgiEndHTML();
ef416fc2 3694
323c5de1 3695 if (in)
3696 cupsFileClose(in);
ef416fc2 3697
323c5de1 3698 if (out)
ef416fc2 3699 {
323c5de1 3700 cupsFileClose(out);
3701 unlink(tempfile);
3702 }
ef416fc2 3703
323c5de1 3704 unlink(filename);
3705 return;
3706 }
ef416fc2 3707
323c5de1 3708 while (cupsFileGets(in, line, sizeof(line)))
3709 {
58dc1933 3710 if (!strncmp(line, "*cupsProtocol:", 14))
323c5de1 3711 continue;
3712 else if (strncmp(line, "*Default", 8))
3713 cupsFilePrintf(out, "%s\n", line);
ef416fc2 3714 else
3715 {
3716 /*
323c5de1 3717 * Get default option name...
ef416fc2 3718 */
3719
323c5de1 3720 strlcpy(keyword, line + 8, sizeof(keyword));
3721
3722 for (keyptr = keyword; *keyptr; keyptr ++)
3723 if (*keyptr == ':' || isspace(*keyptr & 255))
ef416fc2 3724 break;
ef416fc2 3725
323c5de1 3726 *keyptr = '\0';
ef416fc2 3727
323c5de1 3728 if (!strcmp(keyword, "PageRegion") ||
3729 !strcmp(keyword, "PaperDimension") ||
3730 !strcmp(keyword, "ImageableArea"))
749b1e90 3731 var = get_option_value(ppd, "PageSize", value, sizeof(value));
323c5de1 3732 else
749b1e90 3733 var = get_option_value(ppd, keyword, value, sizeof(value));
ef416fc2 3734
749b1e90 3735 if (!var)
323c5de1 3736 cupsFilePrintf(out, "%s\n", line);
749b1e90
MS
3737 else
3738 cupsFilePrintf(out, "*Default%s: %s\n", keyword, var);
323c5de1 3739 }
3740 }
ef416fc2 3741
323c5de1 3742 cupsFileClose(in);
3743 cupsFileClose(out);
3744 }
3745 else
3746 {
3747 /*
3748 * Make sure temporary filename is cleared when there is no PPD...
3749 */
ef416fc2 3750
323c5de1 3751 tempfile[0] = '\0';
ef416fc2 3752 }
3753
323c5de1 3754 /*
3755 * Build a CUPS_ADD_MODIFY_CLASS/PRINTER request, which requires the
3756 * following attributes:
3757 *
3758 * attributes-charset
3759 * attributes-natural-language
3760 * printer-uri
3761 * job-sheets-default
3762 * printer-error-policy
3763 * printer-op-policy
3764 * [ppd file]
3765 */
3766
3767 request = ippNewRequest(is_class ? CUPS_ADD_MODIFY_CLASS :
3768 CUPS_ADD_MODIFY_PRINTER);
3769
3770 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
3771 NULL, uri);
3772
3773 attr = ippAddStrings(request, IPP_TAG_PRINTER, IPP_TAG_NAME,
3774 "job-sheets-default", 2, NULL, NULL);
3775 attr->values[0].string.text = _cupsStrAlloc(cgiGetVariable("job_sheets_start"));
3776 attr->values[1].string.text = _cupsStrAlloc(cgiGetVariable("job_sheets_end"));
3777
3778 if ((var = cgiGetVariable("printer_error_policy")) != NULL)
1f0275e3
MS
3779 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_NAME,
3780 "printer-error-policy", NULL, var);
323c5de1 3781
3782 if ((var = cgiGetVariable("printer_op_policy")) != NULL)
1f0275e3
MS
3783 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_NAME,
3784 "printer-op-policy", NULL, var);
323c5de1 3785
58dc1933
MS
3786 if ((var = cgiGetVariable("port_monitor")) != NULL)
3787 ippAddString(request, IPP_TAG_PRINTER, IPP_TAG_NAME,
3788 "port-monitor", NULL, var);
3789
ef416fc2 3790 /*
3791 * Do the request and get back a response...
3792 */
3793
323c5de1 3794 if (filename)
3795 ippDelete(cupsDoFileRequest(http, request, "/admin/", tempfile));
3796 else
3797 ippDelete(cupsDoRequest(http, request, "/admin/"));
ef416fc2 3798
355e94dc
MS
3799 if (cupsLastError() == IPP_NOT_AUTHORIZED)
3800 {
3801 puts("Status: 401\n");
3802 exit(0);
3803 }
3804 else if (cupsLastError() > IPP_OK_CONFLICT)
ef416fc2 3805 {
323c5de1 3806 cgiStartHTML(title);
f3c17241 3807 cgiShowIPPError(_("Unable to set options"));
ef416fc2 3808 }
3809 else
3810 {
3811 /*
3812 * Redirect successful updates back to the printer page...
3813 */
3814
323c5de1 3815 char refresh[1024]; /* Refresh URL */
ef416fc2 3816
fa73b229 3817
323c5de1 3818 cgiFormEncode(uri, printer, sizeof(uri));
3819 snprintf(refresh, sizeof(refresh), "5;URL=/admin/?OP=redirect&URL=/%s/%s",
3820 is_class ? "classes" : "printers", uri);
ef416fc2 3821 cgiSetVariable("refresh_page", refresh);
3822
323c5de1 3823 cgiStartHTML(title);
ef416fc2 3824
323c5de1 3825 cgiCopyTemplateLang("printer-configured.tmpl");
ef416fc2 3826 }
3827
3828 cgiEndHTML();
323c5de1 3829
3830 if (filename)
3831 unlink(tempfile);
ef416fc2 3832 }
323c5de1 3833
3834 if (filename)
3835 unlink(filename);
ef416fc2 3836}
3837
3838
3839/*
749b1e90 3840 * 'do_set_sharing()' - Set printer-is-shared value.
ef416fc2 3841 */
3842
3843static void
fa73b229 3844do_set_sharing(http_t *http) /* I - HTTP connection */
ef416fc2 3845{
3846 ipp_t *request, /* IPP request */
3847 *response; /* IPP response */
3848 char uri[HTTP_MAX_URI]; /* Printer URI */
3849 const char *printer, /* Printer name */
fa73b229 3850 *is_class, /* Is a class? */
ef416fc2 3851 *shared; /* Sharing value */
ef416fc2 3852
3853
fa73b229 3854 is_class = cgiGetVariable("IS_CLASS");
3855 printer = cgiGetVariable("PRINTER_NAME");
3856 shared = cgiGetVariable("SHARED");
ef416fc2 3857
fa73b229 3858 if (!printer || !shared)
ef416fc2 3859 {
4d301e69 3860 cgiSetVariable("ERROR", cgiText(_("Missing form variable")));
fa73b229 3861 cgiStartHTML(cgiText(_("Set Publishing")));
ef416fc2 3862 cgiCopyTemplateLang("error.tmpl");
3863 cgiEndHTML();
3864 return;
3865 }
3866
3867 /*
fa73b229 3868 * Build a CUPS-Add-Printer/CUPS-Add-Class request, which requires the
3869 * following attributes:
ef416fc2 3870 *
3871 * attributes-charset
3872 * attributes-natural-language
3873 * printer-uri
3874 * printer-is-shared
3875 */
3876
fa73b229 3877 request = ippNewRequest(is_class ? CUPS_ADD_CLASS : CUPS_ADD_PRINTER);
ef416fc2 3878
a4d04587 3879 httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL,
3880 "localhost", 0, is_class ? "/classes/%s" : "/printers/%s",
3881 printer);
ef416fc2 3882 ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri",
3883 NULL, uri);
3884
3885 ippAddBoolean(request, IPP_TAG_OPERATION, "printer-is-shared", atoi(shared));
3886
3887 /*
3888 * Do the request and get back a response...
3889 */
3890
3891 if ((response = cupsDoRequest(http, request, "/admin/")) != NULL)
3892 {
ef416fc2 3893 cgiSetIPPVars(response, NULL, NULL, NULL, 0);
3894
3895 ippDelete(response);
3896 }
ef416fc2 3897
355e94dc
MS
3898 if (cupsLastError() == IPP_NOT_AUTHORIZED)
3899 {
3900 puts("Status: 401\n");
3901 exit(0);
3902 }
3903 else if (cupsLastError() > IPP_OK_CONFLICT)
ef416fc2 3904 {
fa73b229 3905 cgiStartHTML(cgiText(_("Set Publishing")));
f3c17241 3906 cgiShowIPPError(_("Unable to change printer-is-shared attribute"));
ef416fc2 3907 }
3908 else
3909 {
3910 /*
3911 * Redirect successful updates back to the printer page...
3912 */
3913
fa73b229 3914 char url[1024], /* Printer/class URL */
3915 refresh[1024]; /* Refresh URL */
ef416fc2 3916
ef416fc2 3917
fa73b229 3918 cgiRewriteURL(uri, url, sizeof(url), NULL);
3919 cgiFormEncode(uri, url, sizeof(uri));
f301802f 3920 snprintf(refresh, sizeof(refresh), "5;URL=/admin/?OP=redirect&URL=%s", uri);
fa73b229 3921 cgiSetVariable("refresh_page", refresh);
ef416fc2 3922
fa73b229 3923 cgiStartHTML(cgiText(_("Set Publishing")));
3924 cgiCopyTemplateLang(is_class ? "class-modified.tmpl" :
3925 "printer-modified.tmpl");
ef416fc2 3926 }
3927
3928 cgiEndHTML();
3929}
3930
3931
749b1e90
MS
3932/*
3933 * 'get_option_value()' - Return the value of an option.
3934 *
3935 * This function also handles generation of custom option values.
3936 */
3937
3938static char * /* O - Value string or NULL on error */
3939get_option_value(
3940 ppd_file_t *ppd, /* I - PPD file */
3941 const char *name, /* I - Option name */
3942 char *buffer, /* I - String buffer */
3943 size_t bufsize) /* I - Size of buffer */
3944{
3945 char *bufptr, /* Pointer into buffer */
3946 *bufend; /* End of buffer */
3947 ppd_coption_t *coption; /* Custom option */
3948 ppd_cparam_t *cparam; /* Current custom parameter */
3949 char keyword[256]; /* Parameter name */
3950 const char *val, /* Parameter value */
3951 *uval; /* Units value */
3952 long integer; /* Integer value */
3953 double number, /* Number value */
3954 number_points; /* Number in points */
3955
3956
3957 /*
3958 * See if we have a custom option choice...
3959 */
3960
3961 if ((val = cgiGetVariable(name)) == NULL)
3962 {
3963 /*
3964 * Option not found!
3965 */
3966
3967 return (NULL);
3968 }
88f9aafc 3969 else if (_cups_strcasecmp(val, "Custom") ||
749b1e90
MS
3970 (coption = ppdFindCustomOption(ppd, name)) == NULL)
3971 {
3972 /*
3973 * Not a custom choice...
3974 */
3975
3976 strlcpy(buffer, val, bufsize);
3977 return (buffer);
3978 }
3979
3980 /*
3981 * OK, we have a custom option choice, format it...
3982 */
3983
3984 *buffer = '\0';
3985
3986 if (!strcmp(coption->keyword, "PageSize"))
3987 {
3988 const char *lval; /* Length string value */
3989 double width, /* Width value */
3990 width_points, /* Width in points */
3991 length, /* Length value */
3992 length_points; /* Length in points */
3993
3994
3995 val = cgiGetVariable("PageSize.Width");
3996 lval = cgiGetVariable("PageSize.Height");
3997 uval = cgiGetVariable("PageSize.Units");
3998
3999 if (!val || !lval || !uval ||
4000 (width = strtod(val, NULL)) == 0.0 ||
4001 (length = strtod(lval, NULL)) == 0.0 ||
4002 (strcmp(uval, "pt") && strcmp(uval, "in") && strcmp(uval, "ft") &&
4003 strcmp(uval, "cm") && strcmp(uval, "mm") && strcmp(uval, "m")))
4004 return (NULL);
4005
4006 width_points = get_points(width, uval);
4007 length_points = get_points(length, uval);
4008
4009 if (width_points < ppd->custom_min[0] ||
4010 width_points > ppd->custom_max[0] ||
4011 length_points < ppd->custom_min[1] ||
4012 length_points > ppd->custom_max[1])
4013 return (NULL);
4014
4015 snprintf(buffer, bufsize, "Custom.%gx%g%s", width, length, uval);
4016 }
ef55b745 4017 else if (cupsArrayCount(coption->params) == 1)
749b1e90
MS
4018 {
4019 cparam = ppdFirstCustomParam(coption);
4020 snprintf(keyword, sizeof(keyword), "%s.%s", coption->keyword, cparam->name);
4021
4022 if ((val = cgiGetVariable(keyword)) == NULL)
4023 return (NULL);
4024
4025 switch (cparam->type)
4026 {
4027 case PPD_CUSTOM_CURVE :
4028 case PPD_CUSTOM_INVCURVE :
4029 case PPD_CUSTOM_REAL :
4030 if ((number = strtod(val, NULL)) == 0.0 ||
4031 number < cparam->minimum.custom_real ||
4032 number > cparam->maximum.custom_real)
4033 return (NULL);
4034
4035 snprintf(buffer, bufsize, "Custom.%g", number);
4036 break;
4037
4038 case PPD_CUSTOM_INT :
4039 if (!*val || (integer = strtol(val, NULL, 10)) == LONG_MIN ||
4040 integer == LONG_MAX ||
4041 integer < cparam->minimum.custom_int ||
4042 integer > cparam->maximum.custom_int)
4043 return (NULL);
4044
4045 snprintf(buffer, bufsize, "Custom.%ld", integer);
4046 break;
4047
4048 case PPD_CUSTOM_POINTS :
4049 snprintf(keyword, sizeof(keyword), "%s.Units", coption->keyword);
4050
4051 if ((number = strtod(val, NULL)) == 0.0 ||
4052 (uval = cgiGetVariable(keyword)) == NULL ||
4053 (strcmp(uval, "pt") && strcmp(uval, "in") && strcmp(uval, "ft") &&
4054 strcmp(uval, "cm") && strcmp(uval, "mm") && strcmp(uval, "m")))
4055 return (NULL);
4056
4057 number_points = get_points(number, uval);
4058 if (number_points < cparam->minimum.custom_points ||
4059 number_points > cparam->maximum.custom_points)
4060 return (NULL);
4061
4062 snprintf(buffer, bufsize, "Custom.%g%s", number, uval);
4063 break;
4064
4065 case PPD_CUSTOM_PASSCODE :
4066 for (uval = val; *uval; uval ++)
4067 if (!isdigit(*uval & 255))
4068 return (NULL);
4069
4070 case PPD_CUSTOM_PASSWORD :
4071 case PPD_CUSTOM_STRING :
4072 integer = (long)strlen(val);
4073 if (integer < cparam->minimum.custom_string ||
4074 integer > cparam->maximum.custom_string)
4075 return (NULL);
4076
4077 snprintf(buffer, bufsize, "Custom.%s", val);
4078 break;
4079 }
4080 }
4081 else
4082 {
4083 const char *prefix = "{"; /* Prefix string */
4084
4085
4086 bufptr = buffer;
4087 bufend = buffer + bufsize;
4088
4089 for (cparam = ppdFirstCustomParam(coption);
4090 cparam;
4091 cparam = ppdNextCustomParam(coption))
4092 {
4093 snprintf(keyword, sizeof(keyword), "%s.%s", coption->keyword,
4094 cparam->name);
4095
4096 if ((val = cgiGetVariable(keyword)) == NULL)
4097 return (NULL);
4098
4099 snprintf(bufptr, bufend - bufptr, "%s%s=", prefix, cparam->name);
4100 bufptr += strlen(bufptr);
4101 prefix = " ";
4102
4103 switch (cparam->type)
4104 {
4105 case PPD_CUSTOM_CURVE :
4106 case PPD_CUSTOM_INVCURVE :
4107 case PPD_CUSTOM_REAL :
4108 if ((number = strtod(val, NULL)) == 0.0 ||
4109 number < cparam->minimum.custom_real ||
4110 number > cparam->maximum.custom_real)
4111 return (NULL);
4112
4113 snprintf(bufptr, bufend - bufptr, "%g", number);
4114 break;
4115
4116 case PPD_CUSTOM_INT :
4117 if (!*val || (integer = strtol(val, NULL, 10)) == LONG_MIN ||
4118 integer == LONG_MAX ||
4119 integer < cparam->minimum.custom_int ||
4120 integer > cparam->maximum.custom_int)
4121 return (NULL);
4122
4123 snprintf(bufptr, bufend - bufptr, "%ld", integer);
4124 break;
4125
4126 case PPD_CUSTOM_POINTS :
4127 snprintf(keyword, sizeof(keyword), "%s.Units", coption->keyword);
4128
4129 if ((number = strtod(val, NULL)) == 0.0 ||
4130 (uval = cgiGetVariable(keyword)) == NULL ||
4131 (strcmp(uval, "pt") && strcmp(uval, "in") &&
4132 strcmp(uval, "ft") && strcmp(uval, "cm") &&
4133 strcmp(uval, "mm") && strcmp(uval, "m")))
4134 return (NULL);
4135
4136 number_points = get_points(number, uval);
4137 if (number_points < cparam->minimum.custom_points ||
4138 number_points > cparam->maximum.custom_points)
4139 return (NULL);
4140
4141 snprintf(bufptr, bufend - bufptr, "%g%s", number, uval);
4142 break;
4143
4144 case PPD_CUSTOM_PASSCODE :
4145 for (uval = val; *uval; uval ++)
4146 if (!isdigit(*uval & 255))
4147 return (NULL);
4148
4149 case PPD_CUSTOM_PASSWORD :
4150 case PPD_CUSTOM_STRING :
4151 integer = (long)strlen(val);
4152 if (integer < cparam->minimum.custom_string ||
4153 integer > cparam->maximum.custom_string)
4154 return (NULL);
4155
4156 if ((bufptr + 2) > bufend)
4157 return (NULL);
4158
4159 bufend --;
4160 *bufptr++ = '\"';
4161
4162 while (*val && bufptr < bufend)
4163 {
4164 if (*val == '\\' || *val == '\"')
4165 {
4166 if ((bufptr + 1) >= bufend)
4167 return (NULL);
4168
4169 *bufptr++ = '\\';
4170 }
4171
4172 *bufptr++ = *val++;
4173 }
4174
4175 if (bufptr >= bufend)
4176 return (NULL);
4177
4178 *bufptr++ = '\"';
4179 *bufptr = '\0';
4180 bufend ++;
4181 break;
4182 }
4183
4184 bufptr += strlen(bufptr);
4185 }
4186
4187 if (bufptr == buffer || (bufend - bufptr) < 2)
4188 return (NULL);
4189
5a9febac 4190 memcpy(bufptr, "}", 2);
749b1e90
MS
4191 }
4192
4193 return (buffer);
4194}
4195
4196
4197/*
4198 * 'get_points()' - Get a value in points.
4199 */
4200
4201static double /* O - Number in points */
4202get_points(double number, /* I - Original number */
4203 const char *uval) /* I - Units */
4204{
4205 if (!strcmp(uval, "mm")) /* Millimeters */
4206 return (number * 72.0 / 25.4);
4207 else if (!strcmp(uval, "cm")) /* Centimeters */
4208 return (number * 72.0 / 2.54);
4209 else if (!strcmp(uval, "in")) /* Inches */
4210 return (number * 72.0);
4211 else if (!strcmp(uval, "ft")) /* Feet */
4212 return (number * 72.0 * 12.0);
4213 else if (!strcmp(uval, "m")) /* Meters */
4214 return (number * 72.0 / 0.0254);
4215 else /* Points */
4216 return (number);
4217}
4218
4219
ef416fc2 4220/*
58dc1933 4221 * End of "$Id: admin.c 8029 2008-10-08 21:07:45Z mike $".
ef416fc2 4222 */