2015-01-10 00:23:15 -07:00
'use strict' ;
angular . module ( 'myApp.build' , [ 'ngRoute' ] )
. config ( [ '$routeProvider' , function ( $routeProvider ) {
$routeProvider . when ( '/build' , {
templateUrl : 'views/build/build.html' ,
controller : 'BuildCtrl as Build'
} ) ;
} ] )
2015-01-12 15:57:45 -07:00
. controller ( 'BuildCtrl'
, [ '$scope' , '$location' , '$timeout' , 'Desirae'
2015-01-13 03:08:25 -07:00
, function ( $scope , $location , $timeout , DesiraeService ) {
2015-01-12 15:57:45 -07:00
var scope = this
, path = window . path
;
function init ( ) {
console . log ( 'desi loading' ) ;
2015-01-13 03:08:25 -07:00
DesiraeService . meta ( ) . then ( function ( desi ) {
2015-01-12 15:57:45 -07:00
scope . blogdir = desi . blogdir . path . replace ( /^\/(Users|home)\/[^\/]+\// , '~/' ) ;
scope . site = desi . site ;
console . log ( desi . site . base _url ) ;
console . log ( desi . site . base _path ) ;
scope . production _url = desi . site . base _url + path . join ( '/' , desi . site . base _path ) ;
console . log ( scope . production _url ) ;
// this is the responsibility of the build system (Dear Desi), not the library (Desirae)
scope . development _url = location . href . replace ( /\/(#.*)?$/ , '' ) + path . join ( '/' , 'compiled_dev' ) ;
console . log ( scope . development _url ) ;
} ) . catch ( function ( e ) {
window . alert ( "An Error Occured. Most errors that occur in the init phase are parse errors in the config files or permissions errors on files or directories, but check the error console for details." ) ;
console . error ( e ) ;
throw e ;
} ) ;
scope . extensions = [ 'md' , 'html' ] ;
}
2015-01-13 03:08:25 -07:00
scope . onError = function ( e ) {
console . error ( e ) ;
if ( window . confirm ( "Encountered an error. Please inspect the console.\n\nWould you like to ignore the error and continue?" ) ) {
return window . Promise . resolve ( ) ;
} else {
return window . Promise . reject ( ) ;
2015-01-12 15:57:45 -07:00
}
} ;
2015-01-13 03:08:25 -07:00
scope . buildOne = function ( envstr ) {
var env
;
2015-01-12 15:57:45 -07:00
2015-01-13 03:08:25 -07:00
// TODO is there a legitimate case where in addition to base_path (root of the blog)
// a user would need owner_base? i.e. school.edu/~/rogers/blog school.edu/~/rogers/assets
if ( 'production' === envstr ) {
env = {
url : scope . production _url
, base _url : scope . development _url . replace ( /(https?:\/\/[^\/#?]+)/ , '$1' )
, compiled _path : 'compiled'
, since : 0
, onError : scope . onError
} ;
} else {
env = {
url : scope . development _url
, base _url : scope . development _url . replace ( /(https?:\/\/[^\/#?]+)/ , '$1' )
, base _path : scope . development _url . replace ( /https?:\/\/[^\/#?]+/ , '' )
, compiled _path : 'compiled_dev'
, since : 0
, onError : scope . onError
} ;
2015-01-12 15:57:45 -07:00
}
2015-01-13 03:08:25 -07:00
return DesiraeService . build ( env ) . then ( function ( ) {
DesiraeService . write ( env ) ;
2015-01-12 15:57:45 -07:00
} ) ;
2015-01-13 03:08:25 -07:00
} ;
2015-01-12 15:57:45 -07:00
2015-01-13 03:08:25 -07:00
scope . build = function ( envs ) {
window . forEachAsync ( envs , function ( env ) {
return scope . buildOne ( env ) ;
} ) . then ( function ( ) {
window . alert ( 'Build(s) Complete' ) ;
2015-01-12 15:57:45 -07:00
} ) ;
} ;
init ( ) ;
2015-01-10 00:23:15 -07:00
} ] ) ;