This file is indexed.

/var/lib/gnumed/server/sql/gmBlobs.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
-- BLOB tables for GNUmed

-- license: GPL v2 or later
-- author: Karsten Hilbert <Karsten.Hilbert@gmx.net>

-- $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/server/sql/gmBlobs.sql,v $
-- $Revision: 1.64 $ $Date: 2006-05-08 22:05:28 $ $Author: ncq $

-- ===================================================================
-- force terminate + exit(3) on errors if non-interactive
\set ON_ERROR_STOP 1

-- =============================================
create schema blobs authorization "gm-dbo";

-- =============================================
create table blobs.xlnk_identity (
	pk serial primary key,
	xfk_identity integer unique not null,
	pupic text unique not null,
	data text unique default null
) inherits (audit.audit_fields);

-- =============================================
CREATE TABLE blobs.doc_type (
	pk serial primary key,
	name text
		not null
		unique,
	is_user boolean
		not null
		default true
);

-- =============================================
CREATE TABLE blobs.doc_med (
	pk serial primary key,
	patient_id integer
		not null
		references blobs.xlnk_identity(xfk_identity)
		on update cascade
		on delete cascade,
	fk_encounter integer
		not null
		references clin.encounter(pk)
		on update cascade
		on delete restrict,
	fk_episode integer
		not null
		references clin.episode(pk)
		on update cascade
		on delete restrict,
	type integer
		not null
		references blobs.doc_type(pk)
		on update cascade
		on delete restrict,
	comment text,
	"date" timestamp with time zone
		not null
		default CURRENT_TIMESTAMP,
	ext_ref text
) inherits (audit.audit_fields);

-- =============================================
create table blobs.lnk_doc_med2episode (
	pk serial primary key,
	fk_episode integer
		not null
		references clin.episode(pk)
		on update cascade
		on delete restrict,
	fk_doc_med integer
		not null
		references blobs.doc_med(pk)
		on update cascade
		on delete restrict,
	unique (fk_episode, fk_doc_med)
) inherits (audit.audit_fields);

-- =============================================
-- FIXME: audit trail ?
CREATE TABLE blobs.doc_obj (
	pk serial primary key,
	doc_id integer
		not null
		references blobs.doc_med(pk)
		on update cascade
		on delete restrict,
	seq_idx integer,
	comment text,
	fk_intended_reviewer integer
		not null
		references dem.staff(pk)
		on update cascade
		on delete restrict,
	data bytea
		not null
);

-- =============================================
CREATE TABLE blobs.doc_desc (
	pk serial primary key,
	doc_id integer
		references blobs.doc_med(pk)
		on delete cascade
		on update cascade,
	"text" text,
	unique(doc_id, "text")
) inherits (audit.audit_fields);

-- =============================================
create table blobs.reviewed_doc_objs (
	primary key (pk),
	foreign key (fk_reviewed_row)
		references blobs.doc_obj(pk)
		on update cascade
		on delete cascade,
	unique (fk_reviewed_row, fk_reviewer)
) inherits (clin.review_root);

-- =============================================
-- do simple schema revision tracking
select public.log_script_insertion('$RCSfile: gmBlobs.sql,v $', '$Revision: 1.64 $');

-- =============================================
-- questions:
--  - do we need doc_desc linkeable to doc_obj, too ?
--  IH: no, OCR etc. should span the multiple pages
--  - should (potentially large) binary objects be moved to audit tables ?!?
-- IH: no, doc_med should be audited, but not doc_obj. doc_obj rows never change anyway.
-- KH: well, they do get deleted, which ought to be audited

-- notes:
-- - as this uses BYTEA for storing binary data we have the following limitations
--   - needs postgres >= 7.1
--   - needs proper escaping of NUL, \ and ' (should go away once postgres 7.3 arrives)
--   - has a 1 GB limit for data objects
-- - we explicitely don't store MIME types etc. as selecting an appropriate viewer is a runtime issue
-- - it is helpful to structure text in doc_desc to be able to identify source/content etc.
-- =============================================
-- $Log: gmBlobs.sql,v $
-- Revision 1.64  2006-05-08 22:05:28  ncq
-- - doc_med.date should eventually, really, truly be timestamp with time zone
--   after discussion on various lists
--
-- Revision 1.63  2006/04/29 18:19:38  ncq
-- - comment more columns
-- - add fk_encounter/fk_episode to doc_med
-- - trigger to make sure episode is linked to doc in doc_med OR lnk_doc_med2episode only
-- - doc_med.data now TEXT ! not timestamp (needs to be able to be fuzzy)
-- - adjust test BLOBs to new situation
--
-- Revision 1.62  2006/03/06 09:39:31  ncq
-- - lnk_doc_med2episode
--
-- Revision 1.61  2006/02/27 22:39:32  ncq
-- - spell out rfe/aoe
--
-- Revision 1.60  2006/02/05 14:29:07  ncq
-- - proper behaviour for blobs.reviewed_doc_objs foreign keys on update/delete
--
-- Revision 1.59  2006/01/27 22:24:04  ncq
-- - let fk_intended_reviewer reference pk_staff
-- - disallow deletion of any staff that reviewed a document
-- - add reviewed_doc_objs
--
-- Revision 1.58  2006/01/13 13:54:14  ncq
-- - move comments to "-dynamic" file
-- - make doc_obj.seq_idx nullable - there actually may not be a mandatory order to the parts
-- - make doc_obj.data not null - a part without data is meaningless
--
-- Revision 1.57  2006/01/11 13:16:20  ncq
-- - id -> pk
--
-- Revision 1.56  2006/01/05 16:04:37  ncq
-- - move auditing to its own schema "audit"
--
-- Revision 1.55  2005/12/04 09:38:22  ncq
-- - add fk_intended_reviewer to doc_obj
--
-- Revision 1.54  2005/11/27 12:58:19  ncq
-- - factor out dynamic stuff
--
-- Revision 1.53  2005/11/25 15:02:05  ncq
-- - use xlnk_identity in blobs. now
--
-- Revision 1.52  2005/11/11 23:03:55  ncq
-- - add is_user to doc_type
--
-- Revision 1.51  2005/10/26 21:33:25  ncq
-- - review status tracking
--
-- Revision 1.50  2005/10/24 19:09:43  ncq
-- - explicit "blobs." qualifying
--
-- Revision 1.49  2005/09/19 16:38:51  ncq
-- - adjust to removed is_core from gm_schema_revision
--
-- Revision 1.48  2005/09/04 07:27:03  ncq
-- - document rationale for using bytea
--
-- Revision 1.47  2005/07/14 21:31:42  ncq
-- - partially use improved schema revision tracking
--
-- Revision 1.46  2005/02/12 13:49:13  ncq
-- - identity.id -> identity.pk
-- - allow NULL for identity.fk_marital_status
-- - subsequent schema changes
--
-- Revision 1.45  2004/10/11 18:58:45  ncq
-- - rolled back Ian's changes but retained his comments
-- - needs further thought before implementation
--
-- Revision 1.42  2004/09/20 21:12:42  ncq
-- - constraint on doc_desc
-- - improve v_obj4doc
-- - fix v_latest_mugshot
--
-- Revision 1.41  2004/04/07 18:16:06  ncq
-- - move grants into re-runnable scripts
-- - update *.conf accordingly
--
-- Revision 1.40  2004/03/03 15:47:31  ncq
-- - collect blob views in their own file
--
-- Revision 1.39  2004/03/03 05:24:01  ihaywood
-- patient photograph support
--
-- Revision 1.38  2004/01/05 00:58:27  ncq
-- - remove excessive quoting
--
-- Revision 1.37  2004/01/05 00:31:01  ncq
-- - prefer TEXT of VARCHAR
--
-- Revision 1.36  2003/12/29 15:28:03  uid66147
-- - add default current_date to doc_med.date
-- - remove doc_med_external_ref table, we use x_db_fk's now
-- - add on delete/update rules
-- - allow NULL doc_id in doc_obj (think doc object creation)
--
-- Revision 1.35  2003/05/12 12:43:39  ncq
-- - gmI18N, gmServices and gmSchemaRevision are imported globally at the
--   database level now, don't include them in individual schema file anymore
--
-- Revision 1.34  2003/04/07 11:09:54  ncq
-- - separated out data inserts from schema definition
--