1 /*-------------------------------------------------------------------------
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"
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
);
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},
45 char *dropuser
= NULL
;
48 char *username
= NULL
;
49 enum trivalue prompt_password
= TRI_DEFAULT
;
52 bool interactive
= false;
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)
73 host
= pg_strdup(optarg
);
79 port
= pg_strdup(optarg
);
82 username
= pg_strdup(optarg
);
85 prompt_password
= TRI_NO
;
88 prompt_password
= TRI_YES
;
91 /* this covers the long options */
94 /* getopt_long already emitted a complaint */
95 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
100 switch (argc
- optind
)
105 dropuser
= argv
[optind
];
108 pg_log_error("too many command-line arguments (first is \"%s\")",
110 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
114 if (dropuser
== NULL
)
118 dropuser
= simple_prompt("Enter name of role to drop: ", true);
122 pg_log_error("missing required argument role name");
123 pg_log_error_hint("Try \"%s --help\" for more information.", progname
);
130 printf(_("Role \"%s\" will be permanently removed.\n"), dropuser
);
131 if (!yesno_prompt("Are you sure?"))
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
));
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
));
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
);