/var/lib/gnumed/server/sql/gmConfigViews.sql is in gnumed-server 19.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | -- ===================================================
-- GNUmed configuration views
-- author: Karsten Hilbert <Karsten.Hilbert@gmx.net>
-- license: GPL v2 or later
-- $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/server/sql/gmConfigViews.sql,v $
-- $Revision: 1.8 $
-- ======================================================
-- force terminate + exit(3) on errors if non-interactive
\set ON_ERROR_STOP 1
-- ======================================================
-- cfg.distributed_db
COMMENT ON TABLE cfg.distributed_db IS
'Enumerate all known GNUmed service names.
Naming new services needs approval by GNUmed administrators !
I18N note to translators: do NOT change these values !!!
services:
default: GNUmed configuration
personalia: person/address related tables (demographic and identity data)
historica: contains medical data
pharmaceutica: pharmaceutical information (drugref.org, mainly)
reference: "external", "read-only" information such as coding
and patient education material
blobs: large binary objects
administrivia: administrative data for the practice: forms
queue, roster, waiting room, billing etc.
';
-- cfg.config --
COMMENT ON TABLE cfg.config IS
'maps a service name to a database location
for a particular user, includes user
credentials for that database';
COMMENT ON COLUMN cfg.config.profile IS
'allows multiple profiles per user/
pseudo user, one user may have different
configuration profiles depending on role,
need and location';
COMMENT ON COLUMN cfg.config.username IS
'user name as used within the GNUmed system';
COMMENT ON COLUMN cfg.config.ddb IS
'which GNUmed service are we mapping to a database here';
COMMENT ON COLUMN cfg.config.db IS
'how to reach the database host for this service';
COMMENT ON COLUMN cfg.config.crypt_pwd IS
'password for user and database, encrypted';
COMMENT ON COLUMN cfg.config.crypt_algo IS
'encryption algorithm used for password encryption';
COMMENT ON COLUMN cfg.config.pwd_hash IS
'hash of the unencrypted password';
COMMENT ON COLUMN cfg.config.hash_algo IS
'algorithm used for password hashing';
-- cfg.db --
COMMENT ON TABLE cfg.db IS
'information on where to find the databases known to GNUmed';
comment on column cfg.db.id is
'the database with id == 0 is the "default" database';
COMMENT ON COLUMN cfg.db.name IS
'name of the database';
COMMENT ON COLUMN cfg.db.port IS
'port number of the server hosting the database';
COMMENT ON COLUMN cfg.db.host IS
'host name or IP number of the server hosting the database';
-- cfg.db_logon_banner --
comment on table cfg.db_logon_banner is
'Stores a banner to show when clients log on.';
comment on column cfg.db_logon_banner.message is
'The actual message to show.';
comment on column cfg.db_logon_banner.singularizer is
'Makes sure there only ever is one such banner at any given time.';
-- cfg.cfg_type_enum --
comment on table cfg.cfg_type_enum is
'enumeration of config option data types';
-- cfg.cfg_template --
comment on table cfg.cfg_template is
'meta definition of config items';
comment on column cfg.cfg_template.name is
'the name of the option; this MUST be set to something meaningful';
comment on column cfg.cfg_template.type is
'type of the value';
comment on column cfg.cfg_template.cfg_group is
'just for logical grouping of options according to task sets to facilitate better config management';
comment on column cfg.cfg_template.description is
'arbitrary description (user visible)';
-- cfg.cfg_item --
comment on table cfg.cfg_item is
'this table holds all "instances" of cfg.cfg_template';
comment on column cfg.cfg_item.fk_template is
'this points to the class of this option, think of this as a base object, this also defines the data type';
comment on column cfg.cfg_item.owner is
'the database level user this option belongs to; this
is the "role" of the user from the perspective of
the database; can be "default" at the application
level to indicate that it does not care';
comment on column cfg.cfg_item.workplace is
'- the logical workplace this option pertains to
- can be a hostname but should be a logical rather
than a physical identifier as machines get moved,
workplaces do not, kind of like a "role" for the
machine
- associate this with a physical workplace through
a local config file or environment variable';
comment on column cfg.cfg_item.cookie is
'an arbitrary, opaque entity the client code can use
to associate this config item with even finer grained
context; could be the pertinent patient ID for patient
specific options';
-- cfg.cfg_data
comment on table cfg.cfg_data is
'stores opaque configuration data, either text or binary,
note that it will be difficult to share such options
among different types of clients';
-- ======================================================
\unset ON_ERROR_STOP
drop view cfg.v_cfg_options;
\set ON_ERROR_STOP 1
create view cfg.v_cfg_options as
select
cfg_t.name as option,
cfg_t.description as description,
cfg_i.owner as owner,
cfg_i.workplace as workplace,
cfg_i.cookie as cookie,
cfg_t.type as type,
cfg_t.cfg_group as group,
cfg_t.pk as pk_cfg_template,
cfg_i.pk as pk_cfg_item
from
cfg.cfg_template cfg_t,
cfg.cfg_item cfg_i
where
cfg_i.fk_template = cfg_t.pk
;
-- ======================================================
\unset ON_ERROR_STOP
drop view cfg.v_cfg_opts_numeric;
\set ON_ERROR_STOP 1
create view cfg.v_cfg_opts_numeric as
select
cfg_t.name as option,
cfg_v.value as value,
cfg_t.description as description,
cfg_i.owner as owner,
cfg_i.workplace as workplace,
cfg_i.cookie as cookie,
cfg_t.cfg_group as group,
cfg_t.pk as pk_cfg_template,
cfg_i.pk as pk_cfg_item
from
cfg.cfg_template cfg_t,
cfg.cfg_item cfg_i,
cfg.cfg_numeric cfg_v
where
cfg_i.fk_template = cfg_t.pk
and
cfg_v.fk_item = cfg_i.pk
;
-- ======================================================
\unset ON_ERROR_STOP
drop view cfg.v_cfg_opts_string;
\set ON_ERROR_STOP 1
create view cfg.v_cfg_opts_string as
select
cfg_t.name as option,
cfg_v.value as value,
cfg_t.description as description,
cfg_i.owner as owner,
cfg_i.workplace as workplace,
cfg_i.cookie as cookie,
cfg_t.cfg_group as group,
cfg_t.pk as pk_cfg_template,
cfg_i.pk as pk_cfg_item
from
cfg.cfg_template cfg_t,
cfg.cfg_item cfg_i,
cfg.cfg_string cfg_v
where
cfg_i.fk_template = cfg_t.pk
and
cfg_v.fk_item = cfg_i.pk
;
-- ======================================================
\unset ON_ERROR_STOP
drop view cfg.v_cfg_opts_str_array;
\set ON_ERROR_STOP 1
create view cfg.v_cfg_opts_str_array as
select
cfg_t.name as option,
cfg_v.value as value,
cfg_t.description as description,
cfg_i.owner as owner,
cfg_i.workplace as workplace,
cfg_i.cookie as cookie,
cfg_t.cfg_group as group,
cfg_t.pk as pk_cfg_template,
cfg_i.pk as pk_cfg_item
from
cfg.cfg_template cfg_t,
cfg.cfg_item cfg_i,
cfg.cfg_str_array cfg_v
where
cfg_i.fk_template = cfg_t.pk
and
cfg_v.fk_item = cfg_i.pk
;
-- ======================================================
\unset ON_ERROR_STOP
drop view cfg.v_cfg_opts_data;
\set ON_ERROR_STOP 1
create view cfg.v_cfg_opts_data as
select
cfg_t.name as option,
cfg_v.value as value,
cfg_t.description as description,
cfg_i.owner as owner,
cfg_i.workplace as workplace,
cfg_i.cookie as cookie,
cfg_t.cfg_group as group,
cfg_t.pk as pk_cfg_template,
cfg_i.pk as pk_cfg_item
from
cfg.cfg_template cfg_t,
cfg.cfg_item cfg_i,
cfg.cfg_data cfg_v
where
cfg_i.fk_template = cfg_t.pk
and
cfg_v.fk_item = cfg_i.pk
;
-- ======================================================
-- schema
grant usage on schema cfg to group "gm-doctors";
GRANT SELECT ON
cfg.db
, cfg.distributed_db
, cfg.config
, cfg.db_logon_banner
, cfg.cfg_type_enum
, cfg.cfg_template
, cfg.cfg_item
, cfg.cfg_string
, cfg.cfg_str_array
, cfg.cfg_numeric
, cfg.cfg_data
, cfg.v_cfg_options
, cfg.v_cfg_opts_numeric
, cfg.v_cfg_opts_string
, cfg.v_cfg_opts_str_array
, cfg.v_cfg_opts_data
TO GROUP "gm-public";
GRANT select, insert, update, delete on
cfg.cfg_type_enum
, cfg.cfg_template
, cfg.cfg_template_pk_seq
, cfg.cfg_item
, cfg.cfg_item_pk_seq
, cfg.cfg_string
, cfg.cfg_str_array
, cfg.cfg_numeric
, cfg.cfg_data
to group "gm-doctors";
-- =============================================
-- do simple schema revision tracking
delete from gm_schema_revision where filename='$RCSfile: gmConfigViews.sql,v $';
INSERT INTO gm_schema_revision (filename, version) VALUES('$RCSfile: gmConfigViews.sql,v $', '$Revision: 1.8 $');
--=====================================================================
-- $Log: gmConfigViews.sql,v $
-- Revision 1.8 2005-12-27 19:12:48 ncq
-- - comment/grant cfg.db_logon_banner
--
-- Revision 1.7 2005/11/18 15:40:13 ncq
-- - add lots of rerunnable things from gmconfiguration.sql
-- - create adjusted views in cfg.* schema
-- - adjust grants/include schema grants
--
-- Revision 1.6 2005/09/19 16:38:51 ncq
-- - adjust to removed is_core from gm_schema_revision
--
-- Revision 1.5 2005/07/14 21:31:42 ncq
-- - partially use improved schema revision tracking
--
-- Revision 1.4 2005/01/10 11:53:28 ncq
-- - add missing grant
--
-- Revision 1.3 2005/01/09 19:52:52 ncq
-- - include cfg_data in v_cfg_opts_data
-- - add grants
--
-- Revision 1.2 2004/09/06 22:15:45 ncq
-- - add v_cfg_opts_numeric/string/str_array + grants
--
-- Revision 1.1 2004/09/02 00:42:33 ncq
-- - add v_cfg_options
-- - move grants to volatile DDL file
--
|