Class: Rabbit::SlideConfiguration

Inherits:
Object
  • Object
show all
Includes:
GetText, PathManipulatable
Defined in:
lib/rabbit/slide-configuration.rb

Constant Summary collapse

GEM_NAME_PREFIX =
"rabbit-slide"

Constants included from GetText

GetText::DOMAIN

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GetText

included

Constructor Details

#initialize(logger = nil) ⇒ SlideConfiguration

Returns a new instance of SlideConfiguration.



43
44
45
46
# File 'lib/rabbit/slide-configuration.rb', line 43

def initialize(logger=nil)
  @logger = logger || Logger.default
  clear
end

Instance Attribute Details

#authorObject

Returns the value of attribute author.



42
43
44
# File 'lib/rabbit/slide-configuration.rb', line 42

def author
  @author
end

#base_nameObject

Returns the value of attribute base_name.



34
35
36
# File 'lib/rabbit/slide-configuration.rb', line 34

def base_name
  @base_name
end

#idObject

Returns the value of attribute id.



34
35
36
# File 'lib/rabbit/slide-configuration.rb', line 34

def id
  @id
end

#licensesObject

Returns the value of attribute licenses.



35
36
37
# File 'lib/rabbit/slide-configuration.rb', line 35

def licenses
  @licenses
end

#loggerObject

Returns the value of attribute logger.



33
34
35
# File 'lib/rabbit/slide-configuration.rb', line 33

def logger
  @logger
end

#presentation_dateObject

Returns the value of attribute presentation_date.



34
35
36
# File 'lib/rabbit/slide-configuration.rb', line 34

def presentation_date
  @presentation_date
end

#slideshare_idObject

Returns the value of attribute slideshare_id.



36
37
38
# File 'lib/rabbit/slide-configuration.rb', line 36

def slideshare_id
  @slideshare_id
end

#speaker_deck_idObject

Returns the value of attribute speaker_deck_id.



37
38
39
# File 'lib/rabbit/slide-configuration.rb', line 37

def speaker_deck_id
  @speaker_deck_id
end

#tagsObject

Returns the value of attribute tags.



34
35
36
# File 'lib/rabbit/slide-configuration.rb', line 34

def tags
  @tags
end

#ustream_idObject

Returns the value of attribute ustream_id.



38
39
40
# File 'lib/rabbit/slide-configuration.rb', line 38

def ustream_id
  @ustream_id
end

#versionObject



123
124
125
# File 'lib/rabbit/slide-configuration.rb', line 123

def version
  @version || default_version
end

#vimeo_idObject

Returns the value of attribute vimeo_id.



39
40
41
# File 'lib/rabbit/slide-configuration.rb', line 39

def vimeo_id
  @vimeo_id
end

#youtube_idObject

Returns the value of attribute youtube_id.



40
41
42
# File 'lib/rabbit/slide-configuration.rb', line 40

def youtube_id
  @youtube_id
end

Instance Method Details

#clearObject



68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/rabbit/slide-configuration.rb', line 68

def clear
  @id                = nil
  @base_name         = nil
  @tags              = []
  @presentation_date = nil
  @version           = nil
  @licenses          = []
  @slideshare_id     = nil
  @speaker_deck_id   = nil
  @ustream_id        = nil
  @vimeo_id          = nil
  @youtube_id        = nil
  @author            = nil
end

#gem_nameObject



127
128
129
# File 'lib/rabbit/slide-configuration.rb', line 127

def gem_name
  "#{GEM_NAME_PREFIX}-#{@author.rubygems_user}-#{@id}"
end

#loadObject



48
49
50
51
52
53
54
55
56
# File 'lib/rabbit/slide-configuration.rb', line 48

def load
  return unless File.exist?(path)
  conf = YAML.load(File.read(path))
  clear
  merge!(conf)
rescue
  format = _("Failed to read slide configuration: %s: %s")
  @logger.error(format % [path, $!.message])
end

#merge!(conf) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/rabbit/slide-configuration.rb', line 83

def merge!(conf)
  @id                = conf["id"]                || @id
  @base_name         = conf["base_name"]         || @base_name
  @presentation_date = conf["presentation_date"] || @presentation_date
  @version           = conf["version"]           || @version
  @slideshare_id     = conf["slideshare_id"]     || @slideshare_id
  @speaker_deck_id   = conf["speaker_deck_id"]   || @speaker_deck_id
  @ustream_id        = conf["ustream_id"]        || @ustream_id
  @vimeo_id          = conf["vimeo_id"]          || @vimeo_id
  @youtube_id        = conf["youtube_id"]        || @youtube_id

  @tags              |=  (conf["tags"] || [])
  @licenses          |=  (conf["licenses"] || [])

  @author ||= AuthorConfiguration.new(@logger)
  @author.merge!(conf["author"] || {})
end

#pathObject



131
132
133
# File 'lib/rabbit/slide-configuration.rb', line 131

def path
  "config.yaml"
end

#save(base_dir) ⇒ Object



58
59
60
61
62
63
64
65
66
# File 'lib/rabbit/slide-configuration.rb', line 58

def save(base_dir)
  config_path = File.join(base_dir, path)
  create_file(config_path) do |conf_file|
    conf_file.print(to_yaml)
  end
rescue
  format = _("Failed to write slide configuration: %s: %s")
  @logger.error(format % [config_path, $!.message])
end

#to_hashObject



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/rabbit/slide-configuration.rb', line 101

def to_hash
  config = {
    "id"                => @id,
    "base_name"         => @base_name,
    "tags"              => @tags,
    "presentation_date" => @presentation_date,
    "version"           => version,
    "licenses"          => @licenses,
    "slideshare_id"     => @slideshare_id,
    "speaker_deck_id"   => @speaker_deck_id,
    "ustream_id"        => @ustream_id,
    "vimeo_id"          => @vimeo_id,
    "youtube_id"        => @youtube_id,
  }
  config["author"] = @author.to_hash if @author
  config
end

#to_yamlObject



119
120
121
# File 'lib/rabbit/slide-configuration.rb', line 119

def to_yaml
  to_hash.to_yaml
end