doc: clarify that pg_global can _only_ be used for system tabs.
[pgsql.git] / src / bin / scripts / dropuser.c
blob8aad932e6a5bbd0565cc12fb4f8e03865580683f
1 /*-------------------------------------------------------------------------
3 * dropuser
5 * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
6 * Portions Copyright (c) 1994, Regents of the University of California
8 * src/bin/scripts/dropuser.c
10 *-------------------------------------------------------------------------
13 #include "postgres_fe.h"
14 #include "common.h"
15 #include "common/logging.h"
16 #include "common/string.h"
17 #include "fe_utils/option_utils.h"
18 #include "fe_utils/string_utils.h"
21 static void help(const char *progname);
24 int
25 main(int argc, char *argv[])
27 static int if_exists = 0;
29 static struct option long_options[] = {
30 {"host", required_argument, NULL, 'h'},
31 {"port", required_argument, NULL, 'p'},
32 {"username", required_argument, NULL, 'U'},
33 {"no-password", no_argument, NULL, 'w'},
34 {"password", no_argument, NULL, 'W'},
35 {"echo", no_argument, NULL, 'e'},
36 {"interactive", no_argument, NULL, 'i'},
37 {"if-exists", no_argument, &if_exists, 1},
38 {NULL, 0, NULL, 0}
41 const char *progname;
42 int optindex;
43 int c;
45 char *dropuser = NULL;
46 char *host = NULL;
47 char *port = NULL;
48 char *username = NULL;
49 enum trivalue prompt_password = TRI_DEFAULT;
50 ConnParams cparams;
51 bool echo = false;
52 bool interactive = false;
54 PQExpBufferData sql;
56 PGconn *conn;
57 PGresult *result;
59 pg_logging_init(argv[0]);
60 progname = get_progname(argv[0]);
61 set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pgscripts"));
63 handle_help_version_opts(argc, argv, "dropuser", help);
65 while ((c = getopt_long(argc, argv, "eh:ip:U:wW", long_options, &optindex)) != -1)
67 switch (c)
69 case 'e':
70 echo = true;
71 break;
72 case 'h':
73 host = pg_strdup(optarg);
74 break;
75 case 'i':
76 interactive = true;
77 break;
78 case 'p':
79 port = pg_strdup(optarg);
80 break;
81 case 'U':
82 username = pg_strdup(optarg);
83 break;
84 case 'w':
85 prompt_password = TRI_NO;
86 break;
87 case 'W':
88 prompt_password = TRI_YES;
89 break;
90 case 0:
91 /* this covers the long options */
92 break;
93 default:
94 /* getopt_long already emitted a complaint */
95 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
96 exit(1);
100 switch (argc - optind)
102 case 0:
103 break;
104 case 1:
105 dropuser = argv[optind];
106 break;
107 default:
108 pg_log_error("too many command-line arguments (first is \"%s\")",
109 argv[optind + 1]);
110 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
111 exit(1);
114 if (dropuser == NULL)
116 if (interactive)
118 dropuser = simple_prompt("Enter name of role to drop: ", true);
120 else
122 pg_log_error("missing required argument role name");
123 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
124 exit(1);
128 if (interactive)
130 printf(_("Role \"%s\" will be permanently removed.\n"), dropuser);
131 if (!yesno_prompt("Are you sure?"))
132 exit(0);
135 cparams.dbname = NULL; /* this program lacks any dbname option... */
136 cparams.pghost = host;
137 cparams.pgport = port;
138 cparams.pguser = username;
139 cparams.prompt_password = prompt_password;
140 cparams.override_dbname = NULL;
142 conn = connectMaintenanceDatabase(&cparams, progname, echo);
144 initPQExpBuffer(&sql);
145 appendPQExpBuffer(&sql, "DROP ROLE %s%s;",
146 (if_exists ? "IF EXISTS " : ""), fmtId(dropuser));
148 if (echo)
149 printf("%s\n", sql.data);
150 result = PQexec(conn, sql.data);
152 if (PQresultStatus(result) != PGRES_COMMAND_OK)
154 pg_log_error("removal of role \"%s\" failed: %s",
155 dropuser, PQerrorMessage(conn));
156 PQfinish(conn);
157 exit(1);
160 PQclear(result);
161 PQfinish(conn);
162 exit(0);
166 static void
167 help(const char *progname)
169 printf(_("%s removes a PostgreSQL role.\n\n"), progname);
170 printf(_("Usage:\n"));
171 printf(_(" %s [OPTION]... [ROLENAME]\n"), progname);
172 printf(_("\nOptions:\n"));
173 printf(_(" -e, --echo show the commands being sent to the server\n"));
174 printf(_(" -i, --interactive prompt before deleting anything, and prompt for\n"
175 " role name if not specified\n"));
176 printf(_(" -V, --version output version information, then exit\n"));
177 printf(_(" --if-exists don't report error if user doesn't exist\n"));
178 printf(_(" -?, --help show this help, then exit\n"));
179 printf(_("\nConnection options:\n"));
180 printf(_(" -h, --host=HOSTNAME database server host or socket directory\n"));
181 printf(_(" -p, --port=PORT database server port\n"));
182 printf(_(" -U, --username=USERNAME user name to connect as (not the one to drop)\n"));
183 printf(_(" -w, --no-password never prompt for password\n"));
184 printf(_(" -W, --password force password prompt\n"));
185 printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
186 printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);