mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 01:56:21 +00:00
Merge pull request #142 from daniele-rapagnani/feature-private-fields
Implements private fields as requested in #88
This commit is contained in:
commit
214c53a3ab
@ -91,6 +91,7 @@ main = module.exports = ( rawArgs, exitCallback ) ->
|
|||||||
program
|
program
|
||||||
.command('analyze')
|
.command('analyze')
|
||||||
.arguments('<sources...>')
|
.arguments('<sources...>')
|
||||||
|
.option('--private', 'Include resume fields marked as private', false)
|
||||||
.description('Analyze one or more resumes.')
|
.description('Analyze one or more resumes.')
|
||||||
.action(( sources ) ->
|
.action(( sources ) ->
|
||||||
execute.call( this, sources, [], this.opts(), logMsg)
|
execute.call( this, sources, [], this.opts(), logMsg)
|
||||||
@ -118,6 +119,7 @@ main = module.exports = ( rawArgs, exitCallback ) ->
|
|||||||
.option('-p --pdf <engine>', 'PDF generation engine')
|
.option('-p --pdf <engine>', 'PDF generation engine')
|
||||||
.option('--no-sort', 'Sort resume sections by date', false)
|
.option('--no-sort', 'Sort resume sections by date', false)
|
||||||
.option('--tips', 'Display theme tips and warnings.', false)
|
.option('--tips', 'Display theme tips and warnings.', false)
|
||||||
|
.option('--private', 'Include resume fields marked as private', false)
|
||||||
.description('Generate resume to multiple formats')
|
.description('Generate resume to multiple formats')
|
||||||
.action(( sources, targets, options ) ->
|
.action(( sources, targets, options ) ->
|
||||||
x = splitSrcDest.call( this );
|
x = splitSrcDest.call( this );
|
||||||
|
@ -19,6 +19,7 @@ Available options:
|
|||||||
--format -f The format (FRESH or JSON Resume) to use.
|
--format -f The format (FRESH or JSON Resume) to use.
|
||||||
--debug -d Emit extended debugging info.
|
--debug -d Emit extended debugging info.
|
||||||
--assert -a Treat resume validation warnings as errors.
|
--assert -a Treat resume validation warnings as errors.
|
||||||
|
--private Include resume fields marked as private
|
||||||
--no-colors Disable terminal colors.
|
--no-colors Disable terminal colors.
|
||||||
--tips Display theme messages and tips.
|
--tips Display theme messages and tips.
|
||||||
--help -h Display help documentation.
|
--help -h Display help documentation.
|
||||||
|
@ -50,4 +50,32 @@ class AbstractResume
|
|||||||
lastDate = _.last( new_e )[1];
|
lastDate = _.last( new_e )[1];
|
||||||
lastDate.diff firstDate, unit
|
lastDate.diff firstDate, unit
|
||||||
|
|
||||||
|
###*
|
||||||
|
Removes ignored or private fields from a resume object
|
||||||
|
@returns an object with the following structure:
|
||||||
|
{
|
||||||
|
scrubbed: the processed resume object
|
||||||
|
ignoreList: an array of ignored nodes that were removed
|
||||||
|
privateList: an array of private nodes that were removed
|
||||||
|
}
|
||||||
|
###
|
||||||
|
scrubResume: (rep, opts) ->
|
||||||
|
traverse = require 'traverse'
|
||||||
|
ignoreList = []
|
||||||
|
privateList = []
|
||||||
|
includePrivates = if not opts?.private? then true else opts?.private
|
||||||
|
|
||||||
|
scrubbed = traverse( rep ).map ( x ) ->
|
||||||
|
if !@isLeaf
|
||||||
|
if @node.ignore == true || @node.ignore == 'true'
|
||||||
|
ignoreList.push @node
|
||||||
|
@remove()
|
||||||
|
else if (@node.private == true || @node.private == 'true') && !includePrivates
|
||||||
|
privateList.push @node
|
||||||
|
@remove()
|
||||||
|
|
||||||
|
scrubbed: scrubbed
|
||||||
|
ingoreList: ignoreList
|
||||||
|
privateList: privateList
|
||||||
|
|
||||||
module.exports = AbstractResume
|
module.exports = AbstractResume
|
||||||
|
@ -53,15 +53,9 @@ class FreshResume extends AbstractResume
|
|||||||
###
|
###
|
||||||
parseJSON: ( rep, opts ) ->
|
parseJSON: ( rep, opts ) ->
|
||||||
|
|
||||||
# Ignore any element with the 'ignore: true' designator.
|
# Ignore any element with the 'ignore: true' or 'private: true' designator.
|
||||||
that = @
|
that = @
|
||||||
traverse = require 'traverse'
|
{ scrubbed, ignoreList, privateList } = @scrubResume rep, opts
|
||||||
ignoreList = []
|
|
||||||
scrubbed = traverse( rep ).map ( x ) ->
|
|
||||||
if !@isLeaf && @node.ignore
|
|
||||||
if @node.ignore == true || this.node.ignore == 'true'
|
|
||||||
ignoreList.push this.node
|
|
||||||
@remove()
|
|
||||||
|
|
||||||
# Now apply the resume representation onto this object
|
# Now apply the resume representation onto this object
|
||||||
extend( true, @, scrubbed );
|
extend( true, @, scrubbed );
|
||||||
|
@ -48,16 +48,9 @@ class JRSResume extends AbstractResume
|
|||||||
###
|
###
|
||||||
parseJSON: ( rep, opts ) ->
|
parseJSON: ( rep, opts ) ->
|
||||||
opts = opts || { };
|
opts = opts || { };
|
||||||
|
# Ignore any element with the 'ignore: true' or 'private: true' designator.
|
||||||
# Ignore any element with the 'ignore: true' designator.
|
|
||||||
that = this
|
that = this
|
||||||
traverse = require 'traverse'
|
{ scrubbed, ignoreList, privateList } = @scrubResume rep, opts
|
||||||
ignoreList = []
|
|
||||||
scrubbed = traverse( rep ).map ( x ) ->
|
|
||||||
if !@isLeaf && @node.ignore
|
|
||||||
if @node.ignore == true || this.node.ignore == 'true'
|
|
||||||
ignoreList.push @node
|
|
||||||
@remove()
|
|
||||||
|
|
||||||
# Extend resume properties onto ourself.
|
# Extend resume properties onto ourself.
|
||||||
extend true, this, scrubbed
|
extend true, this, scrubbed
|
||||||
|
@ -33,7 +33,9 @@ _analyze = ( sources, dst, opts ) ->
|
|||||||
|
|
||||||
nlzrs = _loadInspectors()
|
nlzrs = _loadInspectors()
|
||||||
results = _.map sources, (src) ->
|
results = _.map sources, (src) ->
|
||||||
r = ResumeFactory.loadOne src, format: 'FRESH', objectify: true, @
|
r = ResumeFactory.loadOne src, format: 'FRESH', objectify: true, inner: {
|
||||||
|
private: opts.private is true
|
||||||
|
}, @
|
||||||
return { } if opts.assert and @hasError()
|
return { } if opts.assert and @hasError()
|
||||||
|
|
||||||
if r.fluenterror
|
if r.fluenterror
|
||||||
|
@ -63,7 +63,10 @@ _build = ( src, dst, opts ) ->
|
|||||||
|
|
||||||
# Load input resumes as JSON...
|
# Load input resumes as JSON...
|
||||||
sheetObjects = ResumeFactory.load src,
|
sheetObjects = ResumeFactory.load src,
|
||||||
format: null, objectify: false, quit: true, inner: { sort: _opts.sort }
|
format: null, objectify: false, quit: true, inner: {
|
||||||
|
sort: _opts.sort
|
||||||
|
private: _opts.private
|
||||||
|
}
|
||||||
, @
|
, @
|
||||||
|
|
||||||
# Explicit check for any resume loading errors...
|
# Explicit check for any resume loading errors...
|
||||||
@ -130,7 +133,7 @@ _build = ( src, dst, opts ) ->
|
|||||||
@stat HMEVENT.applyTheme, r: rez, theme: theme
|
@stat HMEVENT.applyTheme, r: rez, theme: theme
|
||||||
|
|
||||||
# Load the resume into a FRESHResume or JRSResume object
|
# Load the resume into a FRESHResume or JRSResume object
|
||||||
_rezObj = new (RTYPES[ toFormat ])().parseJSON( rez );
|
_rezObj = new (RTYPES[ toFormat ])().parseJSON( rez, private: _opts.private );
|
||||||
|
|
||||||
# Expand output resumes...
|
# Expand output resumes...
|
||||||
targets = _expand dst, theme
|
targets = _expand dst, theme
|
||||||
@ -163,10 +166,10 @@ _build = ( src, dst, opts ) ->
|
|||||||
Prepare for a BUILD run.
|
Prepare for a BUILD run.
|
||||||
###
|
###
|
||||||
_prep = ( src, dst, opts ) ->
|
_prep = ( src, dst, opts ) ->
|
||||||
|
|
||||||
# Cherry-pick options //_opts = extend( true, _opts, opts );
|
# Cherry-pick options //_opts = extend( true, _opts, opts );
|
||||||
_opts.theme = (opts.theme && opts.theme.toLowerCase().trim()) || 'modern';
|
_opts.theme = (opts.theme && opts.theme.toLowerCase().trim()) || 'modern';
|
||||||
_opts.prettify = opts.prettify is true
|
_opts.prettify = opts.prettify is true
|
||||||
|
_opts.private = opts.private is true
|
||||||
_opts.css = opts.css
|
_opts.css = opts.css
|
||||||
_opts.pdf = opts.pdf
|
_opts.pdf = opts.pdf
|
||||||
_opts.wrap = opts.wrap || 60
|
_opts.wrap = opts.wrap || 60
|
||||||
|
Loading…
Reference in New Issue
Block a user