# frozen_string_literal: true # use to sanitize and secure user input module Essentials @default_params = { render_engines: [:browser], animation: { type: :animation, children: [] }, element: { type: :element, renderers: [], children: [] }, matrix: { renderers: [], id: '', type: :shape, parents: [], width: 99, height: 99, attached: [:matrix_color], children: [], # color: { left: 0, top: 0, red: 0.1, green: 0.9, blue: 0.9, alpha: 1, diffusion: :linear }, left: 100, top: 100, clones: [], preset: :matrix }, box: { renderers: [], id: '', type: :shape, parents: [], width: 99, height: 99, attached: [:box_color], children: [], # color: { left: 0, top: 0, red: 1, green: 0.3, blue: 0.3, alpha: 1, diffusion: :linear }, left: 100, top: 100, clones: [], preset: :box }, circle: { renderers: [], id: '', type: :shape, parents: [], width: 99, height: 99, smooth: '100%', # color: { left: 0, top: 0, red: 0.3, green: 0.9, blue: 0.9, alpha: 1, diffusion: :linear }, attached: [:circle_color], children: [], left: 100, top: 100, clones: [], preset: :circle }, shape: { renderers: [], id: '', type: :shape, parents: [], width: 99, height: 99, attached: [:view_color], children: [], # color: { left: 0, top: 0, red: 0.6, green: 0.9, blue: 0.9, alpha: 1, diffusion: :linear }, left: 100, top: 100, clones: [] }, text: { renderers: [], id: '', type: :text, parents: [:view], visual: { size: 25 }, attached: [:text_color], children: [], # color: { left: 0, top: 0, red: 0.3, green: 0.3, blue: 0.3, alpha: 1, diffusion: :linear }, data: 'this is a text sample', width: 199, height: 33, clones: [] }, drm: { type: :drm }, shadow: {}, color: {} } def self.default_params @default_params end def self.new_default_params(new_default) @default_params.merge!(new_default) end def validation(atome_instance_var) # TODO: write validation scheme true if atome_instance_var end def add_essential_drm(params) essential_drm = { authorisation: { read: [Atome.current_user], write: [Atome.current_user] }, atome: { read: [:all], write: [:me] } } params[:drm] = if params[:drm] essential_drm.merge(params[:drm]) else essential_drm end end end