forked from iris-hep/iris-hep.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckpres.rb
executable file
·57 lines (44 loc) · 1.85 KB
/
checkpres.rb
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
# frozen_string_literal: true
require_relative 'checks'
require_relative 'checks_extend'
require 'set'
module Checks
# This is a Jekyll Generator
class CheckPresInfo < Jekyll::Generator
# Main entry point for Jekyll
def generate(site)
@site = site
@site.data['people'].each do |name, person_hash|
presentations = person_hash['presentations']
presentations&.each_with_index do |pres_hash, index|
msg = "presentation ##{index} in _data/people/#{name}.yml"
ensure_array(presentations[index], 'focus-area')
ensure_array(presentations[index], 'challenge-area')
ensure_array(presentations[index], 'project')
local_fa = pres_hash['focus-area']&.to_set
projectless = site.config['iris-hep']['projectless-focus-areas'].to_set
presentation = Record.new(msg, pres_hash)
presentation.key 'title', :nonempty
presentation.key 'date', :nonempty, :date
presentation.key 'meeting', :nonempty
presentation.key 'url'
presentation.key 'meetingurl', :optional
presentation.key 'location', :optional
presentation.key 'focus-area', :optional, set: focus_areas
presentation.key 'challenge-area', :optional, set: challenge_areas
presentation.key 'project', :optional, set: projects unless local_fa && local_fa < projectless
presentation.print_warnings
# Add the member shortname to every presentation
presentations[index]['member'] = name
end
end
@site.data['sorted_presentations'] = get_presentations site.data['people']
end
private
include IrisHep::GetInfoForChecks
def get_presentations(people)
presentations = people.flat_map { |_, p| p['presentations'] || [] }
presentations.sort_by { |p| p['date'] }.reverse!
end
end
end