The business logic of the Madek application is modeled as (Lists of) Resources and their Attributes, Relations, and Concerns.

The webapp provides Views and Actions to operate on those (high-level) Resources in user-centric fashion, while the api provides a RESTful interface closer to their underlying database implementation.

Note that Relations are Attributes that relate to other Resources; and Views are Actions that return an User Interface (or it's data). The distinction is just for clarity.

A major component is the MetaData Concern, which implements an RDF-based Schema and therefore shares many similarites with RDF Schema (RDFS).

Relationship to RDF(S) terms is indicated where applicable, Resources themselves correspond to RDFS Resources.

Resource Defaults (not separately listed):

  • Attributes
    • id: UUID v4
    • created_at: Date
    • updated_at: Date

Public Resources

  • Public as in "Public API", for external application consumers
  • therefore usable as part of "Linked-(Open-)Data"
  • RDF: for every public resource, the webapp implements a permanent URL which is used as the IRI
  • Buzzwords: "Shareable", (potentially) "embeddable", "Permalink"

MediaEntry

┏━━━━━━━━━━━━━━┓       ┏━━━━━━━━━━━━━━┓
┃              ┃       ┃              ┃
┃              ┃       ┃              ┃
┃  MediaEntry  ┃──────▶┃  MediaFile   ┃
┃              ┃       ┃              ┃
┃              ┃       ┃              ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━┛
  • most important Resource in the App
  • Attributes:
    • is_published: default false ("unpublished"), set to true via the publish action. Can only be changed once! (That means there is no "unpublish" action)
  • Relations:
  • Concerns:
  • Views: index, show (with tabs), new ("Upload-Form"), edit_meta_data
  • Actions: update_cover ("Upload"), publish, destroy (deletion)

Collection

┏━━━━━━━━━━━━━━┓       ┏━━━━━━━━━━━━━━┓
┃              ┃       ┃              ┃
┃              ┃──────▶┃  MediaEntry  ┃
┃  Collection  ┃──────▶┃      or      ┃
┃              ┃──────▶┃  Collection  ┃
┃              ┃       ┃              ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━┛

MediaFile

┏━━━━━━━━━━━━━━┓       ┏━━━━━━━━━━━━━━┓
┃              ┃       ┃              ┃
┃              ┃──────▶┃              ┃
┃  MediaFile   ┃──────▶┃   Preview    ┃
┃              ┃──────▶┃              ┃
┃              ┃       ┃              ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━┛
  • not operated on directly, only via related MediaEntry
  • Attributes:
    • filename: String, original filename when uploaded
    • extension: String, e.g. 'jpg'
    • content_type: like mime-type, e.g. 'image/jpeg'
    • media_type: String (image|audio|video|document)
    • height, width: Dimensions in pixels (for images and videos)
    • size: the file size in bytes
    • meta_data: file meta data (EXIF, IPTC, etc), NOT MetaData!
    • access_hash: String, ???
    • guid: String, ???
  • Relations:

Preview

  • Attributes:
    • filename: String, internal filename (after conversion)
    • height, width, content_type, media_type: same meaning as in MediaFile, but pertains to the converted file
    • thumbnail: String, one of the "configured sizes" for Previews, one of large, maximum, medium, small, small_125, x_large (Note: found with SELECT DISTINCT thumbnail FROM previews)
  • Relations:

Vocabulary

┏━━━━━━━━━━━━━━┓       ┏━━━━━━━━━━━━━━┓
┃              ┃       ┃              ┃
┃              ┃──────▶┃              ┃
┃  Vocabulary  ┃──────▶┃   MetaKey    ┃
┃              ┃──────▶┃              ┃
┃              ┃       ┃              ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━┛
  • A List of MetaKeys (in specified order)
  • purpose: group MetaKeys by semantics/topic and set visibility/permissions
  • RDF: Corresponds to a RDFS Vocabulary
  • Attributes:
    • label: String, human-readable name
    • description: String
  • Relations:
  • Concerns:
    • Permissions (as resource)
    • actions (all subjects): view, use

"Core Vocabulary"

  • Madek has 1 built-in Vocabulary (madek_core)
  • defines some very common MetaKeys (Title, Authors, …)
  • has to contain every MetaKey used for internal logic!
    • Title: is also used outside of the MetaData listing
    • Copyright/License: can be used for (public) visibility
    • not to be confused with plain attributes (like responsible_user)

MetaKey

  • a dynamic meta data "property"
  • RDF: Corresponds to a predicate

  • Attributes:

    • label: String, name of the property
    • description: String, description for data input and output
    • hint: String, hint data input only
    • admin_comment: String, internal comment for Admins only
    • position: Number, order inside the Vocabulary Note: has no semantic meaning, only effect is displayed order in Admin UI)
    • meta_datum_object_type: type of MetaDatumValue
    • is_enabled_for_{type}: Bool, valid types: MediaEntry, Collection
    • keywords_alphabetical_order: Bool, (when type is Keywords) signifies if they should be displayed in alphabetical order
    • is_extensible_list: Bool, (when type is Keywords) determines if additional Keywords may be created while editing MetaData
  • Relations:
    • belongs to exactly 1 Vocabulary ("is in the Vocabulary")
    • belongs to 0 or more MetaDatums ("is the key for the datum")
    • belongs to 0 or more Contexts ("how the MetaKey is used in the Context")

Context

┏━━━━━━━━━━━━━━┓       ┏━━━━━━━━━━━━━━┓       ┏━━━━━━━━━━━━━━┓
┃              ┃       ┃              ┃       ┃              ┃
┃              ┃──────▶┃              ┃       ┃              ┃
┃   Context    ┃──────▶┃  ContextKey  ┃──────▶┃   MetaKey    ┃
┃              ┃──────▶┃              ┃       ┃              ┃
┃              ┃       ┃              ┃       ┃              ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━┛
  • groups MetaKeys (as ContextKeys) for display and editing purposes
  • name in UI: "MetaKey(s) in Context"
  • Attributes:
    • label: String, human-readable name
    • description: String
  • Relations:
    • has 0 or more MetaKeys as ContextKeys ("specifies how the MetaKey is used in this Context")
    • can belong to 0 or 1 of each of these AppSettings: ui_summary_context, ui_extra_contexts, ui_list_contexts (Ex.: "This context is used as the 'Summary Context'")

ContextKey

  • Attributes:
    • label, description, hint: String
      • same as the related MetaKey!
      • optionally set to "specify" for this Context
      • Warning: Admin must ensure semantic consistency!
    • position: Number, order inside the Context
    • is_required: Bool, require a value (when edititing)
    • length_max, length_min: Number, require value of certain lengths (when edititing)
    • input_type: Number, ???
  • Relations:

MetaDatum

┏━━━━━━━━━━━━━━┓       ┏MetaDatum━━━━━━┓
┃              ┃       ┃               ┃
┃              ┃       ┃    MetaKey    ┃
┃   Resource   ┃══════▶┃       │       ┃
┃              ┃       ┃       ▼       ┃
┃              ┃       ┃    value(s)   ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━━┛
  • One or more values for a MetaKeys on a subject Resource.
  • RDF: Corresponds to a RDF Triple, where
    • subject is the related Resource
    • predicate is the related MetaKey
    • object is a list of one or more Values
    • and in place of the IRI the UUID is used (internally)
  • valid data-types for values, by sub-type (see below)

  • Attributes:

    • type: type of MetaDatumValue
    • string: the Value if it is a literal value (e.g. Text), depends on type
  • Relations:
    • has exactly 1 MetaKey
    • has exactly 1 Resource (valid types: MediaEntry, Collection)
    • has exactly 1 User as "Creator" (created_by_id)
    • Non-literal types have additional Attributes on their relations! (It stores which User created the MD., as well as for every single value)
      • i.e. (if type=Keywords) → has 1 or more MetaDatum::Keywords
        • which has exactly 1 User as "Creator" (created_by_id)

[MetaDatumValues][]

These are the valid types for a MetaDatum.

  • MetaDatum::Text: literal value (String)
  • MetaDatum::TextDate: literal value (Date as String)
  • MetaDatum::Keywords: Keyword
  • MetaDatum::People: Person
  • MetaDatum::Licenses: License
  • MetaDatum::Groups: Group

Database note: implemented as STI + constraints, get the list with SELECT DISTINCT type FROM meta_data

Person

  • a generic (real-world) person (natural, fictional or juridical), group, or institution.
  • can be linked to MetaDatum of type MetaDatumPerson (i.e. "Author")
  • Attributes:
    • first_name, last_name, pseudonym: String
    • date_of_birth, date_of_death: Date
    • is_bunch: true if the entity should be considered plural, for example a group of people
  • Relations:
    • has 0 or 1 Users (for every User created a related Person is also created.)
  • Concerns:

Keyword

  • Keyword/Term belonging to a specific MetaKey
  • Attributes:
    • term: String
  • Relations:
    • has exactly 1 MetaKey as creator
    • has exactly 1 User as creator
  • Concerns:

License

CREATE TABLE licenses (
    id uuid DEFAULT gen_random_uuid() NOT NULL,
    is_default boolean DEFAULT false,
    is_custom boolean DEFAULT false,
    label character varying,
    usage character varying,
    url character varying,
    "position" double precision
);

CREATE TABLE license_groups (
    id uuid DEFAULT gen_random_uuid() NOT NULL,
    name text NOT NULL,
    description text,
    "position" double precision,
    parent_id uuid,
    created_at timestamp without time zone DEFAULT now() NOT NULL,
    updated_at timestamp without time zone DEFAULT now() NOT NULL
);

Private Resources

  • "Private" as in "Private API"
  • quite literally, not exposed via the api.

User

  • stores login credentials to directly log into the webapp (session than also valid for api)
  • can be "Admin"
  • Attributes:
    • login: String (alphanumeric characters, and ., -, _ allowed)
    • email: String
    • password: String (saved as digest)
    • usage_terms_accepted_at: Date, see UsageTerms.
    • zhdkid: Number, …
    • notes: String, ???
    • autocomplete: String, ???
  • Relations:
  • Concerns:

Group

  • list of Users
  • is manually defined by a User
  • is managed by the User who are members of the Group
  • also the supertype of AuthenticationGroup and InstitutionalGroup (implemented in DB as STI-table), both relating to external authentication systems
  • Attributes:
    • name: String
  • Relations:
    • has 1 or more Users as members
  • Concerns:

AuthenticationGroup

  • Subtype of Group
  • there is 1 "system" Group called "Signed-in Users" which all users automatically join on login (usefor for giving Permissions to "everyone but public"/)
  • additionally, there can be 1 for AuthenticationGroup for every external authentication method.
  • for example, instances using the "ZHdK-AGW" (via the madek-zhdk-integration plugin) will have 1 "ZHdK" AuthenticationGroup.
  • Relations:
    • has 1 or more Users as members, always contains those that are using this particular authentication.

InstitutionalGroup

  • Subtype of Group
  • managed by the same external authentication integrations that have their own AuthenticationGroup, can be used by them to create InstitutionalGroups and manage their [Users][]s according to their internal logic
  • for example, the madek-zhdk-integration plugin can sync LDAP groups

  • Relations:

    • has 1 or more Users as members, which must have a User-ID from the same Directory.

ApiClient

  • an API client. Can use the api but not log into webapp.
  • Attributes:
    • login: String (alphanumeric characters, and ., -, _ allowed)
    • description: String
    • password: String (saved as digest)
  • Relations:
    • has 1 or more Users as administrative contact
  • Concerns:

AppSetting

  • instance-specific settings that is stored in the DB, so it can be altered at run-time (as opposed to configuration files, that can only be altered at deploy-time)
CREATE TABLE app_settings (
    id integer DEFAULT 0 NOT NULL,
    featured_set_id uuid,
    splashscreen_slideshow_set_id uuid,
    catalog_set_id uuid,
    site_title character varying DEFAULT 'Media Archive'::character varying NOT NULL,
    support_url character varying,
    welcome_title character varying DEFAULT 'Powerful Global Information System'::character varying NOT NULL,
    welcome_text character varying DEFAULT '**“Academic information should be freely available to anyone”** — Tim Berners-Lee'::character varying NOT NULL,
    teaser_set_id uuid,
    created_at timestamp without time zone DEFAULT now() NOT NULL,
    updated_at timestamp without time zone DEFAULT now() NOT NULL,
    brand_logo_url character varying DEFAULT '/assets/inserts/image-logo-zhdk.png'::character varying NOT NULL,
    brand_text character varying DEFAULT 'ACME, Inc.'::character varying NOT NULL,
    sitemap jsonb DEFAULT '[{"Medienarchiv ZHdK": "http://medienarchiv.zhdk.ch"}, {"Madek Project on Github": "https://github.com/Madek"}]'::jsonb NOT NULL,
    CONSTRAINT oneandonly CHECK ((id = 0))
);

Admin

  • List of all Users that have administrative privileges for the instance
  • Relations:
    • has 0 or more Users as admin

IoInterface

  • a list of IoMappings
  • Attributes:
    • description: String
  • Relations:

IoMapping

  • maps a MetaKey to defined properties ("keys") from external standards
  • used for import and export
    • Example: Maps "DublinCore Title" to "MadekCore Title"
  • Attributes:
    • meta_key_id character varying NOT NULL,
    • key_map character varying,
    • key_map_type character varying,
  • Relations:
    • has exactly 1 MetaKey ("maps this MetaKey")
    • has exactly 1 IoInterface ("is in this IoInterface")

CustomURL

  • defines a "nice" URL for a Resource
  • does not change path structure, only allows a user defined "name" instead of id
    • example: /madek/entries/123456/madek/entries/my_entry
  • Attributes:
    • id: String, alphanumeric, the "name" (not a UUID)
  • Relations:
    • has exactly 1 User as creator (inital creation by)
    • has exactly 1 User as updator (last update by)
    • has exactly 1 Resource (MediaEntry, Collection)

ZencoderJob


CREATE TABLE zencoder_jobs (
    id uuid DEFAULT gen_random_uuid() NOT NULL,
    media_file_id uuid NOT NULL,
    zencoder_id integer,
    comment text,
    state character varying DEFAULT 'initialized'::character varying NOT NULL,
    error text,
    notification text,
    request text,
    response text,
    created_at timestamp without time zone DEFAULT now() NOT NULL,
    updated_at timestamp without time zone DEFAULT now() NOT NULL
);

UsageTerm

- each instance has 0 or more U. - the most recently created U. is considered as the "latest Version" - application enforces acceptance of "latest Version" - when User logs into the webapp, a modal dialog is shown - on acceptance, User.usage_terms_accepted_at is updated


CREATE TABLE usage_terms (
    id uuid DEFAULT gen_random_uuid() NOT NULL,
    title character varying,
    version character varying,
    intro text,
    body text,
    created_at timestamp without time zone DEFAULT now() NOT NULL,
    updated_at timestamp without time zone DEFAULT now() NOT NULL
);

Concerns

Functionality shared by and/or pertaining to several different Resources is summarized as a Concern.

MetaData

┏━━━━━━━━━━━━━━┓       ┏MetaData━━━━━━━┓
┃              ┃       ┃               ┃
┃              ┃       ┃  Vocabulary   ┃
┃   Resource   ┃━━━━━━▶┃       │       ┃
┃              ┃       ┃       ▼       ┃
┃              ┃       ┃   MetaDatum   ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━━┛

Responsibility

  • Relations:
    • has exactly 1 User as creator
    • has exactly 1 User as responsible
  • for MediaEntry, Collection, there is always exactly 1 owner
    • => responsible_user: User
  • has super-permission "Delete and Change owner" (Löschen und Verantwortlichkeit übertragen)
  • implicitly has all the granular permissions listed below (if applicable)

Favoritable

Previewable

Every MediaEntry is "previewable" (in the UI) as an image. The image can come from several sources:

  • either by a compiled preview from the associated MediaFile
    • images are compiled locally using imagemagick
    • videos are processed with zencoder, a framegrab is used as image
    • sounds can be "converted" to waveform image, ala soundcloud (AsAService: auphonic)
  • or a generic image, possibly representing the mime-type of the MediaFile

A presenter like Presenter::ResourceThumbnail makes the decision which image is used. The MediaEntryController#preview action is only tasked with serving the specific compiled Previews (the generic thumbnail is )

TODO: sizes! (not Previews are not just used for thumbs; how to handle small originals)

Preview of Sets

“Das Preview eines Sets kommt vom ‘Cover’, User-gewählter Entry (aus dem Set) der das Set visuell repräsentiert. Wenn kein ‘Cover' vorhanden ist, nehmen wir aus der Liste der Einträge, die direkt im Set liegen, sortiert nach der (mögl. gespeicherten) Sortierung des Sets, den ersten von dem wir eine visuelle Darstellung haben. Wenn so kein ‘Cover’ gefunden wird, nehmen wir das generische Preview für ein Set.”

Permissions

┏━━━━━━━━━━━━━━┓       ┏Permissions━━━━┓
┃              ┃       ┃               ┃
┃              ┃       ┃    action     ┃
┃   Resource   ┃━━━━━━▶┃       │       ┃
┃              ┃       ┃       ▼       ┃
┃              ┃       ┃    subject    ┃
┗━━━━━━━━━━━━━━┛       ┗━━━━━━━━━━━━━━━┛

Permissions are a kind of ACL (Access-Controll-List) on a specific Resource. A Permission allows an action for a subject. The subject can be of type User, Group or ApiClient, as well as "Public".

  • For a single Permission:
    • Attributes:
      • (dynamic) 1 Bool per action
    • Relations:
      • has exactly 1 Resource as subject ("Permissions are on this Resource")
      • has exactly 1 User as updator (last changed by)

"Public" permissions apply to any request, logged in or not. Permissions for Groups are applied to Users via group membership.

Example: When checking if Resource is visible to the User, we'll need to combine the following:

  • permissions for Public; and, if a User is logged in:
  • implicit User permissions (Responsibility)
  • explicit User permissions
  • permissions of all Groups the User is a member of
subject/permission data_and_preview edit_data fullsize edit_permissions
MediaEntry get metadata and previews edit metadata get full size edit permissions
User
Group -
ApiClient - -
↳ "public" - -
Beschreibung betrachten Metadaten editieren Original exportieren & in PDF blättern Zugriffsberechtigungen ändern
Collection get metadata and previews edit metadata and relations - edit permissions
User -
Group - -
ApiClient - -
↳ "public" - - -
Beschreibung betrachten Metadaten editieren & Inhalte hinzufügen - Zugriffsberechtigungen ändern

Entrusted Resources

A Resource is "entrusted" to a User if they have "view" Permissions on the Resource, either directly or via their membership in a Group. Therefore, a Resource with "view" Permissions for "Public" can never be "entrusted" because it is already public.

Privacy Status

  • public: "Public" has "view" Permission
  • private: No Person or Group has "view" Permission
  • shared:
    • if User is the owner and any Person or Group has "view" Permission
    • if User is not the owner and has "view" Permission (directly or via Group membership)

Relations


Appendix/Editor Notes

How to edit these docs and keep them up to date:

  • Resources and their Attributed can be found by going through the SQL Structure
    • Tables → Resources
    • Columns → Attributes
      • Attributes of type UUID and/or join tables → Relations
  • Actions (and Views) can be found by either looking in the corresponding controller in webapp (as well any included modules) and/or inspecting the output of rake routes
  • for Relations a human-readable yet consistent format is used to indicate cardinality:
    • "exactly 1" (NOT NULL, with UNIQUE constraint)
    • "0 or 1"
    • "0 or more"
    • "1 or more" (NOT NULL)

TODO (DB)

- weg: contexts: **context_group_id uuid**

TODO (Docs)

These docs are complete (according to structure.sql), meaning everything present in the DB schema is also mentioned here.

Almost everything is also explained and put into a consistent structure (or mentioned as an apparent error). everything else is pasted below (either not important or still open questions).

CREATE TABLE edit_sessions (
    id uuid DEFAULT gen_random_uuid() NOT NULL,
    user_id uuid NOT NULL,
    created_at timestamp without time zone DEFAULT now() NOT NULL,
    updated_at timestamp without time zone DEFAULT now() NOT NULL,
    media_entry_id uuid,
    collection_id uuid,
    CONSTRAINT edit_sessions_is_related CHECK ((((((media_entry_id IS NULL) AND (collection_id IS NULL))) OR (((media_entry_id IS NULL) AND (collection_id IS NOT NULL)))) OR (((media_entry_id IS NOT NULL) AND (collection_id IS NULL)))))
);

CREATE TABLE full_texts (
    media_resource_id uuid NOT NULL,
    text text
);


CREATE TABLE visualizations (
    id uuid DEFAULT gen_random_uuid() NOT NULL,
    user_id uuid NOT NULL,
    resource_identifier character varying NOT NULL,
    control_settings text,
    layout text
);