1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00

Introduce FRESH and JSONResume conversion routines.

This commit is contained in:
devlinjd 2015-11-19 09:39:49 -05:00
parent b167abcb78
commit 9044dff504

244
src/core/convert.js Normal file
View File

@ -0,0 +1,244 @@
/**
FRESH to JSON Resume conversion routiens.
@license MIT. Copyright (c) 2015 James M. Devlin / FluentDesk
*/
(function(){
/**
Convert between FRESH and JRS resume/CV formats.
@class FRESHConverter
*/
var FRESHConverter = module.exports = {
/**
Convert from JSON Resume format to FRESH.
*/
toFRESH: function( jrs ) {
return {
name: jrs.basics.name,
info: {
label: jrs.basics.label,
class: jrs.basics.label,
picture: jrs.basics.picture,
summary: jrs.basics.summary
},
contact: {
email: jrs.basics.email,
phone: jrs.basics.phone,
website: jrs.basics.website
},
location: {
city: jrs.basics.location.city,
region: jrs.basics.location.region,
country: jrs.basics.location.countryCode,
code: jrs.basics.location.postalCode,
address: [
jrs.basics.location.address,
]
},
employment: {
history: jrs.work.map( function( job ) {
return {
position: job.position,
employer: job.company,
summary: job.summary,
current: !job.endDate || !job.endDate.trim() || job.endDate.trim().toLowerCase() === 'current',
start: job.startDate,
end: job.endDate,
url: job.website,
keywords: "",
highlights: job.highlights
};
})
},
education: {
history: jrs.education.map(function(edu){
return {
institution: edu.institution,
start: edu.startDate,
end: edu.endDate,
grade: edu.gpa,
curriculum: edu.courses,
url: edu.website || edu.url || null,
summary: null,
// ???: edu.area, TODO
// ???: edu.studyType TODO
};
})
},
service: {
history: jrs.volunteer.map(function(vol) {
return {
type: 'volunteer',
position: vol.position,
organization: vol.organization,
start: vol.startDate,
end: vol.endDate,
url: vol.website,
summary: vol.summary,
highlights: vol.highlights
};
})
},
skills: jrs.skills.map(function(sk){
return {
name: sk.name,
summary: "",
level: sk.level,
summary: sk.keywords.join(', '),
years: null,
proof: null
};
}),
publications: jrs.publications.map(function(pub){
return {
title: pub.name,
publisher: pub.publisher,
link: [
{ 'url': pub.website }
],
year: pub.releaseDate
};
}),
recognition: jrs.awards.map(function(awd){
return {
title: awd.title,
date: awd.date,
summary: awd.summary,
from: awd.awarder,
url: null
};
}),
social: jrs.basics.profiles.map(function(pro){
return {
label: pro.network,
network: pro.network,
url: pro.url,
user: pro.username
};
}),
interests: jrs.interests
};
},
/**
Convert from FRESH format to JSON Resume.
*/
toJRS: function( fresh ) {
return {
basics: {
name: fresh.name,
summary: fresh.info.summary,
website: fresh.info.website,
phone: fresh.info.phone,
email: fresh.info.email,
picture: fresh.info.picture,
location: {
address: fresh.location.address.join('\n'),
postalCode: fresh.location.code,
city: fresh.location.city,
countryCode: fresh.location.country,
region: fresh.location.region
},
profiles: fresh.social.map(function(soc){
return {
network: soc.network,
username: soc.user,
url: soc.url
};
})
},
work: fresh.employment.history.map(function(emp){
return {
company: emp.employer,
position: emp.position,
startDate: emp.start,
endDate: emp.end,
summary: emp.summary,
highlights: emp.highlights
};
}),
education: fresh.education.history.map(function(edu){
return {
institution: edu.institution,
gpa: edu.grade,
courses: edu.curriculum,
startDate: edu.start,
endDate: edu.end,
area: "", // TODO
studyType: ""
};
}),
skills: fresh.skills.map( function(sk){
return {
name: sk.name,
level: sk.level,
keywords: [], // TODO
//???: sk.years,
//???: sk.summary
};
}),
volunteer: fresh.service.history.map(function(srv){
return {
//???: srv.type,
organization: srv.organization,
position: srv.position,
startDate: srv.start,
endDate: srv.end,
website: srv.url,
summary: srv.summary,
highlights: srv.highlights
};
}),
awards: fresh.recognition.map(function(awd){
return {
//???: awd.type, // TODO
//???: awd.url,
title: awd.title,
date: awd.date,
awarder: awd.from,
summary: awd.summary
};
}),
publications: fresh.publications.map(function(pub){
return {
name: pub.title,
publisher: "", // TODO
releaseDate: pub.date,
website: pub.link[0].url,
summary: pub.summary
};
}),
interests: fresh.interests
};
}
};
}());