mirror of
https://github.com/bigchaindb/site.git
synced 2024-10-31 23:35:38 +01:00
Matthias Kretschmann
8da52ced51
* isolate some SVGs and don't include in sprite * use smaller, cropped image for all default headers
469 lines
14 KiB
JavaScript
469 lines
14 KiB
JavaScript
'use strict'
|
|
|
|
// load plugins
|
|
const $ = require('gulp-load-plugins')()
|
|
|
|
// manually import modules that won't get picked up by gulp-load-plugins
|
|
import { src, dest, watch, parallel, series } from 'gulp'
|
|
import del from 'del'
|
|
import parallelize from 'concurrent-transform'
|
|
import browser from 'browser-sync'
|
|
import critical from 'critical'
|
|
import fs from 'fs'
|
|
import yaml from 'js-yaml'
|
|
import request from 'request'
|
|
|
|
// required to get our mix of old and ES6+ js to work with ugify-js 3
|
|
import uglifyjs from 'uglify-es'
|
|
import composer from 'gulp-uglify/composer'
|
|
const minify = composer(uglifyjs, console)
|
|
|
|
// get all the configs: `pkg` and `site`
|
|
import pkg from './package.json'
|
|
const site = yaml.safeLoad(fs.readFileSync('./_config.yml'))
|
|
|
|
// handle errors
|
|
const onError = (error) => {
|
|
console.log($.util.colors.red('\nYou fucked up:', error.message, 'on line' , error.lineNumber, '\n'))
|
|
this.emit('end')
|
|
}
|
|
|
|
// 'development' is just default, production overrides are triggered
|
|
// by adding the production flag to the gulp command e.g. `gulp build --production`
|
|
const isProduction = ($.util.env.production === true ? true : false),
|
|
isStaging = ($.util.env.staging === true ? true : false)
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
// Terminal Banner
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
console.log("");
|
|
console.log($.util.colors.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>"))
|
|
console.log($.util.colors.cyan(" __ __ __ "))
|
|
console.log($.util.colors.cyan(" |__). _ _|_ _ . _ | \ |__) "))
|
|
console.log($.util.colors.cyan(" |__)|(_)(_| )(_||| )|__/|__) "))
|
|
console.log($.util.colors.cyan(" _/ "))
|
|
console.log($.util.colors.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>"))
|
|
console.log("")
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
// Config
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
// Port to use for the development server
|
|
const PORT = 1337
|
|
|
|
// paths
|
|
const SRC = site.source + '/',
|
|
DIST = site.destination + '/'
|
|
|
|
// deployment
|
|
const S3BUCKET = 'www.bigchaindb.com',
|
|
S3REGION = 'eu-central-1',
|
|
S3BUCKET_BETA = 'beta.bigchaindb.com',
|
|
S3REGION_BETA = 'eu-central-1',
|
|
S3BUCKET_GAMMA = 'gamma.bigchaindb.com',
|
|
S3REGION_GAMMA = 'eu-central-1'
|
|
|
|
// SVG sprite
|
|
const SPRITECONFIG = {
|
|
dest: DIST + 'assets/img/',
|
|
mode: {
|
|
symbol: {
|
|
dest: './',
|
|
sprite: 'sprite.svg'
|
|
}
|
|
}
|
|
}
|
|
|
|
// code banner
|
|
const BANNER = [
|
|
'/**',
|
|
' ** <%= pkg.name %>',
|
|
' ** <%= pkg.description %>',
|
|
' ** <%= pkg.homepage %>',
|
|
' **',
|
|
' ** <%= pkg.author.name %> <<%= pkg.author.email %>>',
|
|
' **/',
|
|
''
|
|
].join('\n')
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
// Tasks
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
//
|
|
// Delete build artifacts
|
|
//
|
|
export const clean = () =>
|
|
del([
|
|
DIST + '**/*',
|
|
DIST + '.*' // delete all hidden files
|
|
])
|
|
|
|
|
|
//
|
|
// Jekyll
|
|
//
|
|
export const jekyll = (done) => {
|
|
|
|
browser.notify('Compiling Jekyll')
|
|
|
|
if (isProduction) {
|
|
process.env.JEKYLL_ENV = 'production'
|
|
var jekyll_options = 'jekyll build'
|
|
} else if (isStaging) {
|
|
process.env.JEKYLL_ENV = 'staging'
|
|
var jekyll_options = 'jekyll build'
|
|
} else {
|
|
process.env.JEKYLL_ENV = 'development'
|
|
var jekyll_options = 'jekyll build --incremental --drafts --future'
|
|
}
|
|
|
|
let spawn = require('child_process').spawn,
|
|
jekyll = spawn('bundle', ['exec', jekyll_options], { stdio: 'inherit' })
|
|
|
|
jekyll.on('error', (error) => onError() ).on('close', done)
|
|
}
|
|
|
|
|
|
//
|
|
// HTML
|
|
//
|
|
export const html = () => src(DIST + '**/*.html')
|
|
.pipe($.if(isProduction || isStaging, $.htmlmin({
|
|
collapseWhitespace: true,
|
|
conservativeCollapse: true,
|
|
removeComments: true,
|
|
useShortDoctype: true,
|
|
collapseBooleanAttributes: true,
|
|
removeRedundantAttributes: true,
|
|
removeEmptyAttributes: true,
|
|
minifyJS: true,
|
|
minifyCSS: true
|
|
})))
|
|
.pipe(dest(DIST))
|
|
|
|
|
|
//
|
|
// Styles
|
|
//
|
|
export const css = () => src(SRC + '_assets/styles/bigchain.scss')
|
|
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.init()))
|
|
.pipe($.sass({
|
|
includePaths: ['node_modules']
|
|
}).on('error', $.sass.logError))
|
|
.pipe($.autoprefixer())
|
|
.pipe($.if(isProduction || isStaging, $.cleanCss()))
|
|
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.write()))
|
|
.pipe($.if(isProduction || isStaging, $.header(BANNER, { pkg: pkg })))
|
|
.pipe($.rename({ suffix: '.min' }))
|
|
.pipe(dest(DIST + 'assets/css/'))
|
|
.pipe(browser.stream())
|
|
|
|
// inline critical-path CSS
|
|
export const criticalCss = (done) => {
|
|
if (isProduction || isStaging) {
|
|
critical.generate({
|
|
base: DIST,
|
|
src: 'index.html',
|
|
dest: 'index.html',
|
|
inline: true,
|
|
minify: true,
|
|
dimensions: [{
|
|
height: 320,
|
|
width: 640
|
|
}, {
|
|
height: 600,
|
|
width: 800
|
|
}, {
|
|
height: 900,
|
|
width: 1360
|
|
}]
|
|
})
|
|
}
|
|
done()
|
|
}
|
|
|
|
|
|
//
|
|
// JavaScript
|
|
//
|
|
export const js = () =>
|
|
src([
|
|
SRC + '_assets/javascripts/bigchain.js',
|
|
SRC + '_assets/javascripts/page-*.js'
|
|
])
|
|
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.init()))
|
|
.pipe($.include({
|
|
includePaths: ['node_modules', SRC + '_assets/javascripts']
|
|
})).on('error', onError)
|
|
.pipe($.if(isProduction || isStaging, minify())).on('error', onError)
|
|
.pipe($.if(!(isProduction || isStaging), $.sourcemaps.write()))
|
|
.pipe($.if(isProduction || isStaging, $.header(BANNER, { pkg: pkg })))
|
|
.pipe($.rename({suffix: '.min'}))
|
|
.pipe(dest(DIST + 'assets/js/'))
|
|
|
|
|
|
//
|
|
// SVG sprite
|
|
//
|
|
export const svg = () => src(SRC + '_assets/images/*.svg')
|
|
.pipe($.if(isProduction || isStaging, $.imagemin({
|
|
svgoPlugins: [{ removeRasterImages: true }]
|
|
})))
|
|
.pipe($.svgSprite(SPRITECONFIG))
|
|
.pipe(dest(DIST + 'assets/img/'))
|
|
|
|
|
|
//
|
|
// Copy Images
|
|
//
|
|
export const images = () => src(SRC + '_assets/images/**/*')
|
|
.pipe($.if(isProduction || isStaging, $.imagemin([
|
|
$.imagemin.gifsicle({ interlaced: true }),
|
|
$.imagemin.jpegtran({ progressive: true }),
|
|
$.imagemin.optipng({ optimizationLevel: 5 }),
|
|
$.imagemin.svgo({plugins: [{ removeViewBox: true }]})
|
|
])))
|
|
.pipe(dest(DIST + 'assets/img/'))
|
|
|
|
|
|
//
|
|
// Revision static assets
|
|
//
|
|
export const rev = (done) => {
|
|
// globbing is slow so do everything conditionally for faster dev build
|
|
if (isProduction || isStaging) {
|
|
return src(DIST + 'assets/**/*.{css,js,png,jpg,jpeg,svg,eot,ttf,woff,woff2}')
|
|
.pipe($.rev())
|
|
.pipe(dest(DIST + 'assets/'))
|
|
// output rev manifest for next replace task
|
|
.pipe($.rev.manifest())
|
|
.pipe(dest(DIST + 'assets/'))
|
|
}
|
|
done()
|
|
}
|
|
|
|
|
|
//
|
|
// Replace all links to assets in files
|
|
// from a manifest file
|
|
//
|
|
export const revReplace = (done) => {
|
|
// globbing is slow so do everything conditionally for faster dev build
|
|
if (isProduction || isStaging) {
|
|
let manifest = src(DIST + 'assets/rev-manifest.json')
|
|
|
|
return src(DIST + '**/*.{html,css,js}')
|
|
.pipe($.revReplace({ manifest: manifest }))
|
|
.pipe(dest(DIST))
|
|
}
|
|
done()
|
|
}
|
|
|
|
|
|
//
|
|
// Dev Server
|
|
//
|
|
export const server = (done) => {
|
|
browser.init({
|
|
server: DIST,
|
|
port: PORT,
|
|
reloadDebounce: 2000
|
|
})
|
|
done()
|
|
}
|
|
|
|
|
|
//
|
|
// Watch for file changes
|
|
//
|
|
export const watchSrc = () => {
|
|
watch(SRC + '_assets/styles/**/*.scss').on('all', series(css))
|
|
watch(SRC + '_assets/javascripts/**/*.js').on('all', series(js, browser.reload))
|
|
watch(SRC + '_assets/images/**/*.{png,jpg,jpeg,gif,webp}').on('all', series(images, browser.reload))
|
|
watch(SRC + '_assets/images/**/*.{svg}').on('all', series(svg, browser.reload))
|
|
watch([SRC + '**/*.{html,xml,json,txt,md,yml}', './*.yml', SRC + '_includes/svg/*']).on('all', series('build', browser.reload))
|
|
}
|
|
|
|
|
|
//
|
|
// Build banner
|
|
//
|
|
const buildBanner = (done) => {
|
|
console.log($.util.colors.gray(" ------------------------------------------"))
|
|
console.log($.util.colors.green(' Building ' + ($.util.env.production ? 'production' : $.util.env.staging ? 'staging' : 'dev') + ' version...'))
|
|
console.log($.util.colors.gray(" ------------------------------------------"))
|
|
|
|
done()
|
|
}
|
|
|
|
|
|
//
|
|
// Deploy banner
|
|
//
|
|
const deployBanner = (done) => {
|
|
if (($.util.env.live || $.util.env.beta || $.util.env.gamma) === true ) {
|
|
console.log($.util.colors.gray(" ------------------------------------------"))
|
|
console.log($.util.colors.green(' Deploying to ' + ($.util.env.live ? 'Live' : $.util.env.beta ? 'Beta' : 'Gamma') + '... '))
|
|
console.log($.util.colors.gray(" ------------------------------------------"))
|
|
} else {
|
|
console.log($.util.colors.red('\nHold your horses! You need to specify a deployment target like so: gulp deploy --beta. Possible targets are: --live, --beta, --gamma\n'))
|
|
}
|
|
done()
|
|
}
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
// Collection tasks
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
//
|
|
// Full build
|
|
//
|
|
// `gulp build` is the development build
|
|
// `gulp build --production` is the production build
|
|
//
|
|
export const build = series(buildBanner, clean, jekyll, parallel(html, css, js, images, svg), rev, revReplace, criticalCss)
|
|
|
|
//
|
|
// Build site, run server, and watch for file changes
|
|
//
|
|
// `gulp dev`
|
|
//
|
|
export const dev = series(build, server, watchSrc)
|
|
|
|
// Set `gulp dev` as default: `gulp`
|
|
export default dev
|
|
|
|
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
// Deployment
|
|
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
//
|
|
// gulp deploy --live
|
|
// gulp deploy --beta
|
|
// gulp deploy --gamma
|
|
//
|
|
export const s3 = () => {
|
|
|
|
// create publisher, define config
|
|
if ($.util.env.live === true) {
|
|
var publisher = $.awspublish.create({
|
|
params: { 'Bucket': S3BUCKET },
|
|
'accessKeyId': process.env.AWS_ACCESS_KEY,
|
|
'secretAccessKey': process.env.AWS_SECRET_KEY,
|
|
'region': S3REGION
|
|
})
|
|
} else if ($.util.env.beta === true) {
|
|
var publisher = $.awspublish.create({
|
|
params: { 'Bucket': S3BUCKET_BETA },
|
|
'accessKeyId': process.env.AWS_BETA_ACCESS_KEY,
|
|
'secretAccessKey': process.env.AWS_BETA_SECRET_KEY,
|
|
'region': S3REGION_BETA
|
|
})
|
|
} else if ($.util.env.gamma === true) {
|
|
var publisher = $.awspublish.create({
|
|
params: { 'Bucket': S3BUCKET_GAMMA },
|
|
'accessKeyId': process.env.AWS_GAMMA_ACCESS_KEY,
|
|
'secretAccessKey': process.env.AWS_GAMMA_SECRET_KEY,
|
|
'region': S3REGION_GAMMA
|
|
})
|
|
} else {
|
|
return
|
|
}
|
|
|
|
return src(DIST + '**/*')
|
|
.pipe($.awspublishRouter({
|
|
cache: {
|
|
// cache for 5 minutes by default
|
|
cacheTime: 300
|
|
},
|
|
routes: {
|
|
// all static assets, cached & gzipped
|
|
'^assets/(?:.+)\\.(?:js|css|png|jpg|jpeg|gif|ico|svg|ttf|eot|woff|woff2)$': {
|
|
cacheTime: 2592000, // cache for 1 month
|
|
gzip: true
|
|
},
|
|
|
|
// every other asset, cached
|
|
'^assets/.+$': {
|
|
cacheTime: 2592000 // cache for 1 month
|
|
},
|
|
|
|
// all html files, not cached & gzipped
|
|
'^.+\\.html': {
|
|
cacheTime: 0,
|
|
gzip: true
|
|
},
|
|
|
|
// all pdf files, not cached
|
|
'^.+\\.pdf': {
|
|
cacheTime: 0
|
|
},
|
|
|
|
// font mime types
|
|
'\.ttf$': {
|
|
key: '$&',
|
|
headers: { 'Content-Type': 'application/x-font-ttf' }
|
|
},
|
|
'\.woff$': {
|
|
key: '$&',
|
|
headers: { 'Content-Type': 'application/x-font-woff' }
|
|
},
|
|
'\.woff2$': {
|
|
key: '$&',
|
|
headers: { 'Content-Type': 'application/x-font-woff2' }
|
|
},
|
|
|
|
// pass-through for anything that wasn't matched by routes above, to be uploaded with default options
|
|
"^.+$": "$&"
|
|
}
|
|
}))
|
|
.pipe(parallelize(publisher.publish(), 100))
|
|
.pipe(publisher.sync()) // delete files in bucket that are not in local folder
|
|
.pipe($.awspublish.reporter({
|
|
states: ['create', 'update', 'delete']
|
|
}))
|
|
}
|
|
|
|
|
|
//
|
|
// Ping search engines on live deployment
|
|
//
|
|
export const seo = (done) => {
|
|
|
|
const googleUrl = 'http://www.google.com/webmasters/tools/ping?sitemap=',
|
|
bingUrl = 'http://www.bing.com/webmaster/ping.aspx?siteMap='
|
|
|
|
const response = (error, response) => {
|
|
if (error) {
|
|
$.util.log($.util.colors.red(error))
|
|
} else {
|
|
$.util.log($.util.colors.gray('Status:', response && response.statusCode))
|
|
|
|
if (response.statusCode === 200) {
|
|
$.util.log($.util.colors.green('Successfully notified'))
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($.util.env.live === true) {
|
|
request(googleUrl + site.url + '/sitemap.xml', response)
|
|
request(bingUrl + site.url + '/sitemap.xml', response)
|
|
}
|
|
|
|
done()
|
|
}
|
|
|
|
|
|
//
|
|
// `gulp deploy`
|
|
//
|
|
export const deploy = series(deployBanner, s3, seo)
|