Class: Docman::DocrootConfig
- Inherits:
-
Object
- Object
- Docman::DocrootConfig
- Defined in:
- lib/docman/docroot_config.rb
Instance Attribute Summary collapse
-
#deploy_target ⇒ Object
readonly
Returns the value of attribute deploy_target.
-
#docroot_dir ⇒ Object
readonly
Returns the value of attribute docroot_dir.
-
#raw_infos ⇒ Object
readonly
Returns the value of attribute raw_infos.
-
#root ⇒ Object
readonly
Returns the value of attribute root.
-
#structure ⇒ Object
readonly
Returns the value of attribute structure.
Instance Method Summary collapse
- #chain(info) ⇒ Object
- #config_hash ⇒ Object
- #info_by(name) ⇒ Object
-
#initialize(docroot_dir, deploy_target) ⇒ DocrootConfig
constructor
A new instance of DocrootConfig.
- #root_path ⇒ Object
- #states_dependin_on(name, version) ⇒ Object
- #structure_build(path, prefix = '', parent = nil) ⇒ Object
- #update ⇒ Object
Constructor Details
#initialize(docroot_dir, deploy_target) ⇒ DocrootConfig
Returns a new instance of DocrootConfig.
10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/docman/docroot_config.rb', line 10 def initialize(docroot_dir, deploy_target) @docroot_dir = docroot_dir @deploy_target = deploy_target @docroot_config_dir = File.join(docroot_dir, 'config') update if File.file? File.join(@docroot_config_dir, 'config.yaml') Docman::Application.instance.config.merge_config_from_file(File.join(@docroot_config_dir, 'config.yaml')) end @names = {} @raw_infos = {} @structure = structure_build File.join(@docroot_config_dir, 'master') end |
Instance Attribute Details
#deploy_target ⇒ Object (readonly)
Returns the value of attribute deploy_target.
8 9 10 |
# File 'lib/docman/docroot_config.rb', line 8 def deploy_target @deploy_target end |
#docroot_dir ⇒ Object (readonly)
Returns the value of attribute docroot_dir.
8 9 10 |
# File 'lib/docman/docroot_config.rb', line 8 def docroot_dir @docroot_dir end |
#raw_infos ⇒ Object (readonly)
Returns the value of attribute raw_infos.
8 9 10 |
# File 'lib/docman/docroot_config.rb', line 8 def raw_infos @raw_infos end |
#root ⇒ Object (readonly)
Returns the value of attribute root.
8 9 10 |
# File 'lib/docman/docroot_config.rb', line 8 def root @root end |
#structure ⇒ Object (readonly)
Returns the value of attribute structure.
8 9 10 |
# File 'lib/docman/docroot_config.rb', line 8 def structure @structure end |
Instance Method Details
#chain(info) ⇒ Object
66 67 68 69 70 71 72 73 74 |
# File 'lib/docman/docroot_config.rb', line 66 def chain(info) chain = {} chain[info['name']] = info while info['parent'] do chain[info['parent']['name']] = info['parent'] info = info['parent'] end Hash[chain.to_a.reverse!] end |
#config_hash ⇒ Object
90 91 92 |
# File 'lib/docman/docroot_config.rb', line 90 def config_hash Digest::MD5.hexdigest(Marshal::dump(@raw_infos)) end |
#info_by(name) ⇒ Object
76 77 78 |
# File 'lib/docman/docroot_config.rb', line 76 def info_by(name) @names[name] end |
#root_path ⇒ Object
94 95 96 |
# File 'lib/docman/docroot_config.rb', line 94 def root_path @root['fuil_build_path'] end |
#states_dependin_on(name, version) ⇒ Object
80 81 82 83 84 85 86 87 88 |
# File 'lib/docman/docroot_config.rb', line 80 def states_dependin_on(name, version) raise "There is no project with name '#{name}' exists in config" unless @names.has_key? name states = {} @names[name].states.each do |state, info| states[state] = info if info['version'] == version end states end |
#structure_build(path, prefix = '', parent = nil) ⇒ Object
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 |
# File 'lib/docman/docroot_config.rb', line 27 def structure_build(path, prefix = '', parent = nil) return unless File.file? File.join(path, 'info.yaml') children = [] info = YAML::load_file(File.join(path, 'info.yaml')) @raw_infos[File.basename path] = YAML::load_file(File.join(path, 'info.yaml')) unless info['status'].nil? return if info['status'] == 'disabled' end name = File.basename path prefix = prefix.size > 0 ? File.join(prefix, name) : name info['full_path'] = path info['docroot_config'] = self info['build_path'] = prefix info['full_build_path'] = File.join(@docroot_dir, prefix) info['temp_path'] = File.join(@docroot_dir, 'tmp', info['build_path']) info['name'] = name info['parent'] = parent info['children'] = children i = Docman::Info.new(info) @root = i if parent.nil? i['root'] = @root @names[name.to_s] = i Dir.foreach(path) do |entry| next if (entry == '..' || entry == '.') full_path = File.join(path, entry) if File.directory?(full_path) dir_hash = structure_build(full_path, prefix, i) unless dir_hash == nil children << dir_hash end end end i end |