Module: Jekyll::StudentsContain

Defined in:
jekyll/_plugins/students-contain-prof.rb

Instance Method Summary collapse

Instance Method Details

#areaRepIs(student_list, prof_fsuid) ⇒ Object



142
143
144
145
146
147
# File 'jekyll/_plugins/students-contain-prof.rb', line 142

def areaRepIs(student_list,prof_fsuid)
 		  return nil if !(student_list.is_a?(Array))
		  student_list.select {
		  		|student| studentAreaRepIs(student, prof_fsuid)
		  		}
end

#committeeContains(student_list, prof_fsuid) ⇒ Object



119
120
121
122
123
124
# File 'jekyll/_plugins/students-contain-prof.rb', line 119

def committeeContains(student_list,prof_fsuid)
 		  return nil if !(student_list.is_a?(Array))
		  student_list.select {
		  		|student| studentCommitteeContains(student, prof_fsuid)
		  		}
end

#majorProfessorIs(student_list, prof_fsuid) ⇒ Object




111
112
113
114
115
116
# File 'jekyll/_plugins/students-contain-prof.rb', line 111

def majorProfessorIs(student_list,prof_fsuid)
  return nil if !(student_list.is_a?(Array))
  student_list.select {
  		|student| studentMajorProfessorIs(student, prof_fsuid)
  		}
end

#majorProfessorOfStudent(student_list, student_id) ⇒ Object



156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'jekyll/_plugins/students-contain-prof.rb', line 156

def majorProfessorOfStudent(student_list,student_id) 
    # return an array of fsuid's for student major professor
    # ie. chair  or co-chairs of committee of current academic plan
    

    return nil if !(student_list.is_a?(Array))

    students = student_list.select {
            |student| student_id == student['fsuid']
    }
            
    return nil if students.length == 0
    
    student = students[0]
        
    prof_array = Array.new
    
    if ( student.key?('academic_plans') && student['academic_plans'] != nil &&  student.key?('academic_plan_code') && student['academic_plan_code'] != nil)
            plans = student['academic_plans']
            plan = plans[student['academic_plan_code']]
            return nil if plan == nil
            if (plan.key?('chair') &&  plan['chair'] != nil)
                chair = plan['chair'];
                if (chair.key?('fsuid') && chair['fsuid'] != nil)
                     prof_array.push(chair['fsuid'])
                end
            end
            if (plan.key?('co_chair1') &&  plan['co_chair1'] != nil)
                co_chair1 = plan['co_chair1'];
                if (co_chair1.key?('fsuid') && co_chair1['fsuid'] != nil)
                     prof_array.push(co_chair1['fsuid'])
                end
            end
            if (plan.key?('co_chair2') && plan['co_chair2'] != nil)
                 co_chair2 = plan['co_chair2'];
                if (co_chair2.key?('fsuid') && co_chair2['fsuid'] != nil)
                     prof_array.push(co_chair2['fsuid'])
                end
            end
    end

    return prof_array
				 
end

#majorProfessorOrCommitteeMember(student_list, prof_fsuid) ⇒ Object



126
127
128
129
130
131
132
133
# File 'jekyll/_plugins/students-contain-prof.rb', line 126

def majorProfessorOrCommitteeMember(student_list,prof_fsuid)

  return nil if !(student_list.is_a?(Array))
  student_list.select {
          |student| (studentCommitteeContains(student, prof_fsuid) || studentMajorProfessorIs(student, prof_fsuid))
          }

end

#studentAreaRepIs(student, prof_fsuid) ⇒ Object



100
101
102
# File 'jekyll/_plugins/students-contain-prof.rb', line 100

def studentAreaRepIs(student,prof_fsuid)
		return false
end

#studentCommitteeContains(student, prof_fsuid) ⇒ Object



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
# File 'jekyll/_plugins/students-contain-prof.rb', line 57

def studentCommitteeContains(student, prof_fsuid)

# run through academic plans, and return true if prof_fsuid is a committee member or the univ_rep.
# Note that major professor/cochairs are NOT considered part of the committee (use studentMajorProfessorIs(student, prof_fsuid) to find that info
# returns false if no academic plan


	 if ( student.key?('academic_plans') && student['academic_plans'] != nil)
			 student['academic_plans'].each do |key, plan|
					 if (plan.key?('members') && plan['members'] != nil)
					 		 # CEH: Patch to convert hash to array to handle bad data
					 		 marray = plan['members'].is_a?(Hash) ? plan['members'].values : plan['members']
							 marray.each do | m |
                                      # members is an array, not a hash
                                         if (m.key?('fsuid') && m['fsuid'] != nil)
                                              if (m['fsuid'] == prof_fsuid)
                                                      return true
                                              end
                                         end
							 end
					 end

					 if (plan.key?('univ_rep') && plan['univ_rep'] != nil)
                                     if (plan.key?('univ_rep') && plan['univ_rep'] != nil)
                                          ur = plan['univ_rep']
                                          if (ur.key?('fsuid') && ur['fsuid'] != nil)
                                              if (plan['univ_rep']['fsuid'] == prof_fsuid)
                                                      return true
                                              end
                                          end
                                     end
                             end
			 end
	 end

             return false
end

#studentMajorProfessorIs(student, prof_fsuid) ⇒ Object




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
# File 'jekyll/_plugins/students-contain-prof.rb', line 15

def studentMajorProfessorIs(student, prof_fsuid)

    # run through academic plans, and return true if prof_fsuid is a chair  or cochair1 or cochair2
    # returns false if no academic plan, or if chair/cochairs don't have an fsuid assigned

    if ( student.key?('academic_plans') )
				if (student['academic_plans'] != nil)
        
           # Jekyll.logger.warn "Student  #{student['fsuid']} : has plans; check #{prof_fsuid}"

         student['academic_plans'].each do |key, plan|
             if (plan.key?('chair') && plan['chair'] != nil)
                    chair = plan['chair'];
                    if (chair.key?('fsuid')  && chair['fsuid'] != nil)
                        if (chair['fsuid'] == prof_fsuid)
                            return true
                        end
                    end
                end
             if (plan.key?('co_chair1')  && plan['co_chair1'] != nil)
                 chair = plan['co_chair1'];
                    if (chair.key?('fsuid')  && chair['fsuid'] != nil)
                        if (chair['fsuid'] == prof_fsuid)
                            return true
                        end
                    end
                end
             if (plan.key?('co_chair2') && plan['co_chair2'] != nil)
                 chair = plan['co_chair2'];
                    if (chair.key?('fsuid') && chair['fsuid'] != nil)
                        if (chair['fsuid'] == prof_fsuid)
                            return true
                        end
                    end
             end
         end
				end
    end
    return false
end

#studentOfConcern(student, prof_fsuid) ⇒ Object



104
105
106
# File 'jekyll/_plugins/students-contain-prof.rb', line 104

def studentOfConcern(student, prof_fsuid)
		return (studentAreaRepIs(student, prof_fsuid) || studentMajorProfessorIs(student, prof_fsuid)  || studentCommitteeContains(student, prof_fsuid) )
end

#studentsOfConcern(student_list, prof_fsuid) ⇒ Object



149
150
151
152
153
154
# File 'jekyll/_plugins/students-contain-prof.rb', line 149

def studentsOfConcern(student_list,prof_fsuid)
    return nil if !(student_list.is_a?(Array))
     student_list.select {
        |student| (studentOfConcern(student, prof_fsuid) )
        }
end

#studentTASupervisorsContains(student, prof_fsuid) ⇒ Object



95
96
97
# File 'jekyll/_plugins/students-contain-prof.rb', line 95

def studentTASupervisorsContains(student, prof_fsuid)
		return false
end

#TASupervisorsContains(student_list, prof_fsuid) ⇒ Object



135
136
137
138
139
140
# File 'jekyll/_plugins/students-contain-prof.rb', line 135

def TASupervisorsContains(student_list,prof_fsuid)
		  return nil if !(student_list.is_a?(Array))
		  student_list.select {
		  		|student| studentTASupervisorsContains(student, prof_fsuid)
		  		}
end