1997-10-17 17:55:34 +08:00
|
|
|
/*
|
|
|
|
* insert_username.c
|
|
|
|
* $Modified: Thu Oct 16 08:13:42 1997 by brook $
|
2010-09-21 04:08:53 +08:00
|
|
|
* contrib/spi/insert_username.c
|
1997-10-17 17:55:34 +08:00
|
|
|
*
|
|
|
|
* insert user name in response to a trigger
|
|
|
|
* usage: insert_username (column_name)
|
|
|
|
*/
|
2009-01-07 21:44:37 +08:00
|
|
|
#include "postgres.h"
|
1997-10-17 17:55:34 +08:00
|
|
|
|
2009-01-07 21:44:37 +08:00
|
|
|
#include "catalog/pg_type.h"
|
|
|
|
#include "commands/trigger.h"
|
|
|
|
#include "executor/spi.h"
|
|
|
|
#include "miscadmin.h"
|
|
|
|
#include "utils/builtins.h"
|
2011-02-24 01:18:09 +08:00
|
|
|
#include "utils/rel.h"
|
1997-10-17 17:55:34 +08:00
|
|
|
|
2006-05-31 06:12:16 +08:00
|
|
|
PG_MODULE_MAGIC;
|
|
|
|
|
2001-03-22 12:01:46 +08:00
|
|
|
extern Datum insert_username(PG_FUNCTION_ARGS);
|
1997-10-17 17:55:34 +08:00
|
|
|
|
2000-11-21 04:36:57 +08:00
|
|
|
PG_FUNCTION_INFO_V1(insert_username);
|
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
Datum
|
|
|
|
insert_username(PG_FUNCTION_ARGS)
|
1997-10-17 17:55:34 +08:00
|
|
|
{
|
2000-05-29 09:59:17 +08:00
|
|
|
TriggerData *trigdata = (TriggerData *) fcinfo->context;
|
1998-02-26 12:46:47 +08:00
|
|
|
Trigger *trigger; /* to get trigger name */
|
1997-10-17 17:55:34 +08:00
|
|
|
int nargs; /* # of arguments */
|
|
|
|
Datum newval; /* new value of column */
|
1998-02-26 12:46:47 +08:00
|
|
|
char **args; /* arguments */
|
|
|
|
char *relname; /* triggered relation name */
|
1997-10-17 17:55:34 +08:00
|
|
|
Relation rel; /* triggered relation */
|
|
|
|
HeapTuple rettuple = NULL;
|
|
|
|
TupleDesc tupdesc; /* tuple description */
|
|
|
|
int attnum;
|
|
|
|
|
1998-02-26 12:46:47 +08:00
|
|
|
/* sanity checks from autoinc.c */
|
2000-05-29 09:59:17 +08:00
|
|
|
if (!CALLED_AS_TRIGGER(fcinfo))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
2000-05-29 09:59:17 +08:00
|
|
|
elog(ERROR, "insert_username: not fired by trigger manager");
|
2010-10-09 01:27:31 +08:00
|
|
|
if (!TRIGGER_FIRED_FOR_ROW(trigdata->tg_event))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
2010-10-09 01:27:31 +08:00
|
|
|
elog(ERROR, "insert_username: must be fired for row");
|
|
|
|
if (!TRIGGER_FIRED_BEFORE(trigdata->tg_event))
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
1998-01-07 02:53:02 +08:00
|
|
|
elog(ERROR, "insert_username: must be fired before event");
|
1998-02-26 12:46:47 +08:00
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
if (TRIGGER_FIRED_BY_INSERT(trigdata->tg_event))
|
|
|
|
rettuple = trigdata->tg_trigtuple;
|
|
|
|
else if (TRIGGER_FIRED_BY_UPDATE(trigdata->tg_event))
|
|
|
|
rettuple = trigdata->tg_newtuple;
|
1997-10-17 17:55:34 +08:00
|
|
|
else
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
Wording cleanup for error messages. Also change can't -> cannot.
Standard English uses "may", "can", and "might" in different ways:
may - permission, "You may borrow my rake."
can - ability, "I can lift that log."
might - possibility, "It might rain today."
Unfortunately, in conversational English, their use is often mixed, as
in, "You may use this variable to do X", when in fact, "can" is a better
choice. Similarly, "It may crash" is better stated, "It might crash".
2007-02-02 03:10:30 +08:00
|
|
|
elog(ERROR, "insert_username: cannot process DELETE events");
|
1998-02-26 12:46:47 +08:00
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
rel = trigdata->tg_relation;
|
1997-10-17 17:55:34 +08:00
|
|
|
relname = SPI_getrelname(rel);
|
1998-02-26 12:46:47 +08:00
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
trigger = trigdata->tg_trigger;
|
1997-10-17 17:55:34 +08:00
|
|
|
|
|
|
|
nargs = trigger->tgnargs;
|
|
|
|
if (nargs != 1)
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
1998-01-07 02:53:02 +08:00
|
|
|
elog(ERROR, "insert_username (%s): one argument was expected", relname);
|
1998-02-26 12:46:47 +08:00
|
|
|
|
1997-10-17 17:55:34 +08:00
|
|
|
args = trigger->tgargs;
|
|
|
|
tupdesc = rel->rd_att;
|
1998-02-26 12:46:47 +08:00
|
|
|
|
|
|
|
attnum = SPI_fnumber(tupdesc, args[0]);
|
|
|
|
|
|
|
|
if (attnum < 0)
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_TRIGGERED_ACTION_EXCEPTION),
|
2005-10-15 10:49:52 +08:00
|
|
|
errmsg("\"%s\" has no attribute \"%s\"", relname, args[0])));
|
2003-07-25 01:52:50 +08:00
|
|
|
|
1998-02-26 12:46:47 +08:00
|
|
|
if (SPI_gettypeid(tupdesc, attnum) != TEXTOID)
|
2003-07-25 01:52:50 +08:00
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_TRIGGERED_ACTION_EXCEPTION),
|
|
|
|
errmsg("attribute \"%s\" of \"%s\" must be type TEXT",
|
2003-08-04 08:43:34 +08:00
|
|
|
args[0], relname)));
|
1998-02-26 12:46:47 +08:00
|
|
|
|
|
|
|
/* create fields containing name */
|
2008-03-26 06:42:46 +08:00
|
|
|
newval = CStringGetTextDatum(GetUserNameFromId(GetUserId()));
|
1998-02-26 12:46:47 +08:00
|
|
|
|
|
|
|
/* construct new tuple */
|
|
|
|
rettuple = SPI_modifytuple(rel, rettuple, 1, &attnum, &newval, NULL);
|
|
|
|
if (rettuple == NULL)
|
2003-07-25 01:52:50 +08:00
|
|
|
/* internal error */
|
|
|
|
elog(ERROR, "insert_username (\"%s\"): %d returned by SPI_modifytuple",
|
1998-02-26 12:46:47 +08:00
|
|
|
relname, SPI_result);
|
|
|
|
|
|
|
|
pfree(relname);
|
1997-10-17 17:55:34 +08:00
|
|
|
|
2000-05-29 09:59:17 +08:00
|
|
|
return PointerGetDatum(rettuple);
|
1997-10-17 17:55:34 +08:00
|
|
|
}
|