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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# File 'jekyll/_plugins/archive.rb', line 19
def generate(site)
defaults = {
'path_pattern' => "archive/**/*",
'term_memos' => [
"Annual_Review",
"TA_Evaluation",
"RA_Evaluation",
"Appt",
"Progress_Report"
],
'progression_memos' => [
"Memo",
"Application",
"Offer_Letter",
"Rotations_Memo",
"Major_Professor_Memo",
"Committee_Memo",
"Program_of_Study",
"Teaching_Memo",
"Seminars_Memo",
"Prelim_Exam_Memo",
"Candidacy_Form",
"DIS_Memo",
"Comp_Exam_Memo",
"Proposal_Memo",
"Proposal",
"MS_Defense",
"PhD_Defense",
"Dept_Clearance",
"Time_Extension"
],
}
config = defaults;
if ! site.data.dig('dept', 'department', 'student_docs')
Jekyll.logger.info "Archive Info: dept.department.student_docs not defined"
else
config = defaults.merge(site.data['dept']['department']['student_docs'] || {});
end
config.each do |k, v|
if !( (k.instance_of? String) && (defaults.key?(k)) ) then
Jekyll.logger.warn "Archive Warning: invalid configuration key: #{k}"
end
if v.instance_of? Array then
v.each do |li|
if !( (li.instance_of? String) && (! li.match(/[^A-Za-z0-9_]/)) ) then
Jekyll.logger.warn "Archive Warning: invalid configuration value: '#{li}' in #{k}"
end
end
elsif !( (k == 'path_pattern') && (v.instance_of? String) ) then
Jekyll.logger.warn "Archive Warning: invalid configuration: #{{k => v}}"
end
end
path_glob = config['path_pattern'];
term_docs = config['term_memos'].join('|');
prog_docs = config['progression_memos'].join('|');
pattern = %r{
# Field Pattern Separator
(?<location> .+ ) /
(?<fsuid> .+ ) /
(?<last_name> .+ ) _
(?<emplid> \d{9} ) _
(?<document> #{term_docs} ) _
(?<term> Fall|Sp|Su ) _
(?<year> \d{4} )
\.pdf
|
# Field Pattern Separator
(?<location> .+ ) /
(?<fsuid> .+ ) /
(?<last_name> .+ ) _
(?<emplid> \d{9} ) _
(?<document> #{prog_docs} ) _
(?<year> \d{4} ) _
(?<month> \d+ ) _
(?<day> \d+ )
\.pdf
}x
files = Dir.glob(path_glob).reject {|path| File.directory?(path) || path.include?('_ignore')}
archive = files.map do |path|
match = pattern.match(path)
if match then
record = { "path" => path }
match.names.each do |name|
record[name] = match[name]
end
record["file"] = File.basename(path)
record
else
Jekyll.logger.error "Archive Error: Invalid path pattern in #{path}"
nil
end
end
if archive.include?(nil)
raise Jekyll::Errors::FatalException, "Archive files did not match patterns"
end
site.data['archive'] = archive
site.data['archive_doc_defaults'] = defaults
end
|