/**
* @license
* Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at
* http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at
* http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at
* http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at
* http://polymer.github.io/PATENTS.txt
*/
import * as fs from 'fs';
import * as path from 'path';
import * as logging from 'plylog';
import * as semver from 'semver';
import request = require('request');
import rimraf = require('rimraf');
import GitHubApi = require('github');
const gunzip = require('gunzip-maybe');
const tar = require('tar-fs');
const fileFilterList = [
'.gitattributes',
'.github',
'.travis.yml',
];
const logger = logging.getLogger('cli.github');
export type RequestAPI = request.RequestAPI<
request.Request,
request.CoreOptions,
request.RequiredUriUrl>;
export class GithubResponseError extends Error {
name = 'GithubResponseError';
statusCode?: number;
statusMessage?: string;
constructor(statusCode?: number, statusMessage?: string) {
super('unexpected response: ' + statusCode + ' ' + statusMessage);
this.statusCode = statusCode;
this.statusMessage = statusMessage;
}
}
export interface GithubOpts {
owner: string;
repo: string;
githubToken?: string;
githubApi?: GitHubApi;
requestApi?: request
.RequestAPI;
}
export class Github {
private _token: string|null;
private _github: GitHubApi;
private _request: request
.RequestAPI;
private _owner: string;
private _repo: string;
static tokenFromFile(filename: string): string|null {
try {
return fs.readFileSync(filename, 'utf8').trim();
} catch (error) {
return null;
}
}
constructor(opts: GithubOpts) {
this._token = opts.githubToken || Github.tokenFromFile('token');
this._owner = opts.owner;
this._repo = opts.repo;
this._github = opts.githubApi || new GitHubApi({
protocol: 'https',
});
if (this._token != null) {
this._github.authenticate({
type: 'oauth',
token: this._token,
});
}
this._request = opts.requestApi || request;
}
/**
* Given a Github tarball URL, download and extract it into the outDir
* directory.
*/
async extractReleaseTarball(tarballUrl: string, outDir: string):
Promise {
const tarPipe = tar.extract(outDir, {
ignore: (_: any, header: any) => {
const splitPath = path.normalize(header.name).split(path.sep);
// ignore the top directory in the tarfile to unpack directly to
// the cwd
return splitPath.length < 1 || splitPath[1] === '';
},
map: (header: any) => {
const splitPath = path.normalize(header.name).split(path.sep);
const unprefixed = splitPath.slice(1).join(path.sep).trim();
// A ./ prefix is needed to unpack top-level files in the tar,
// otherwise they're just not written
header.name = path.join('.', unprefixed);
return header;
},
});
return new Promise((resolve, reject) => {
this._request({
url: tarballUrl,
headers: {
'User-Agent': 'request',
'Authorization': (this._token) ? `token ${this._token}` :
undefined,
}
})
.on('response',
function(response) {
if (response.statusCode !== 200) {
reject(new GithubResponseError(
response.statusCode, response.statusMessage));
return;
}
logger.info('Unpacking template files');
})
.on('error', reject)
.pipe(gunzip())
.on('error', reject)
.pipe(tarPipe)
.on('error', reject)
.on('finish', () => {
logger.info('Finished writing template files');
resolve();
});
});
}
/**
* Given an extracted or cloned github directory, unlink files that are not
* intended to exist in the template and serve other purposes in the gith
* repository.
*/
removeUnwantedFiles(outDir: string) {
fileFilterList.forEach((filename) => {
rimraf.sync(path.join(outDir, filename));
});
}
/**
* Get all Github releases and match their tag names against the given semver
* range. Return the release with the latest possible match.
*/
async getSemverRelease(semverRange: string): Promise {
// Note that we only see the 100 most recent releases. If we ever release
// enough versions that this becomes a concern, we'll need to improve this
// call to request multiple pages of results.
const releases: GitHubApi.Release[] = await this._github.repos.getReleases({
owner: this._owner,
repo: this._repo,
per_page: 100,
});
const validReleaseVersions =
releases.filter((r) => semver.valid(r.tag_name)).map((r) => r.tag_name);
const maxSatisfyingReleaseVersion =
semver.maxSatisfying(validReleaseVersions, semverRange);
const maxSatisfyingRelease =
releases.find((r) => r.tag_name === maxSatisfyingReleaseVersion);
if (!maxSatisfyingRelease) {
throw new Error(`${this._owner}/${this._repo} has no releases matching ${
semverRange}.`);
}
return maxSatisfyingRelease;
}
}