netlify-cms-backend-bitbucket
Version:
Bitbucket backend for Netlify CMS
711 lines (605 loc) • 23 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.API_NAME = void 0;
var _get2 = _interopRequireDefault(require("lodash/get"));
var _flow2 = _interopRequireDefault(require("lodash/flow"));
var _netlifyCmsLibUtil = require("netlify-cms-lib-util");
var _path = require("path");
var _commonTags = require("common-tags");
var _whatTheDiff = require("what-the-diff");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var BitBucketPullRequestState;
(function (BitBucketPullRequestState) {
BitBucketPullRequestState["MERGED"] = "MERGED";
BitBucketPullRequestState["SUPERSEDED"] = "SUPERSEDED";
BitBucketPullRequestState["OPEN"] = "OPEN";
BitBucketPullRequestState["DECLINED"] = "DECLINED";
})(BitBucketPullRequestState || (BitBucketPullRequestState = {}));
var BitBucketPullRequestStatusState;
(function (BitBucketPullRequestStatusState) {
BitBucketPullRequestStatusState["Successful"] = "SUCCESSFUL";
BitBucketPullRequestStatusState["Failed"] = "FAILED";
BitBucketPullRequestStatusState["InProgress"] = "INPROGRESS";
BitBucketPullRequestStatusState["Stopped"] = "STOPPED";
})(BitBucketPullRequestStatusState || (BitBucketPullRequestStatusState = {}));
const API_NAME = 'Bitbucket';
exports.API_NAME = API_NAME;
const APPLICATION_JSON = 'application/json; charset=utf-8';
function replace404WithEmptyResponse(err) {
if (err && err.status === 404) {
console.log('This 404 was expected and handled appropriately.');
return {
size: 0,
values: []
};
} else {
return Promise.reject(err);
}
}
class API {
constructor(config) {
_defineProperty(this, "apiRoot", void 0);
_defineProperty(this, "branch", void 0);
_defineProperty(this, "repo", void 0);
_defineProperty(this, "requestFunction", void 0);
_defineProperty(this, "repoURL", void 0);
_defineProperty(this, "commitAuthor", void 0);
_defineProperty(this, "mergeStrategy", void 0);
_defineProperty(this, "initialWorkflowStatus", void 0);
_defineProperty(this, "cmsLabelPrefix", void 0);
_defineProperty(this, "buildRequest", req => {
const withRoot = _netlifyCmsLibUtil.unsentRequest.withRoot(this.apiRoot)(req);
if (withRoot.has('cache')) {
return withRoot;
} else {
const withNoCache = _netlifyCmsLibUtil.unsentRequest.withNoCache(withRoot);
return withNoCache;
}
});
_defineProperty(this, "request", req => {
try {
return (0, _netlifyCmsLibUtil.requestWithBackoff)(this, req);
} catch (err) {
throw new _netlifyCmsLibUtil.APIError(err.message, null, API_NAME);
}
});
_defineProperty(this, "responseToJSON", (0, _netlifyCmsLibUtil.responseParser)({
format: 'json',
apiName: API_NAME
}));
_defineProperty(this, "responseToBlob", (0, _netlifyCmsLibUtil.responseParser)({
format: 'blob',
apiName: API_NAME
}));
_defineProperty(this, "responseToText", (0, _netlifyCmsLibUtil.responseParser)({
format: 'text',
apiName: API_NAME
}));
_defineProperty(this, "requestJSON", req => this.request(req).then(this.responseToJSON));
_defineProperty(this, "requestText", req => this.request(req).then(this.responseToText));
_defineProperty(this, "user", () => this.requestJSON('/user'));
_defineProperty(this, "hasWriteAccess", async () => {
const response = await this.request(this.repoURL);
if (response.status === 404) {
throw Error('Repo not found');
}
return response.ok;
});
_defineProperty(this, "getBranch", async branchName => {
const branch = await this.requestJSON(`${this.repoURL}/refs/branches/${branchName}`);
return branch;
});
_defineProperty(this, "branchCommitSha", async branch => {
const {
target: {
hash: branchSha
}
} = await this.getBranch(branch);
return branchSha;
});
_defineProperty(this, "defaultBranchCommitSha", () => {
return this.branchCommitSha(this.branch);
});
_defineProperty(this, "isFile", ({
type
}) => type === 'commit_file');
_defineProperty(this, "getFileId", (commitHash, path) => {
return `${commitHash}/${path}`;
});
_defineProperty(this, "processFile", file => _objectSpread({
id: file.id,
type: file.type,
path: file.path,
name: (0, _netlifyCmsLibUtil.basename)(file.path)
}, file.commit && file.commit.hash ? {
id: this.getFileId(file.commit.hash, file.path)
} : {}));
_defineProperty(this, "processFiles", files => files.filter(this.isFile).map(this.processFile));
_defineProperty(this, "readFile", async (path, sha, {
parseText = true,
branch = this.branch,
head = ''
} = {}) => {
const fetchContent = async () => {
const node = head ? head : await this.branchCommitSha(branch);
const content = await this.request({
url: `${this.repoURL}/src/${node}/${path}`,
cache: 'no-store'
}).then(parseText ? this.responseToText : this.responseToBlob);
return content;
};
const content = await (0, _netlifyCmsLibUtil.readFile)(sha, fetchContent, _netlifyCmsLibUtil.localForage, parseText);
return content;
});
_defineProperty(this, "getEntriesAndCursor", jsonResponse => {
const {
size: count,
page,
pagelen: pageSize,
next,
previous: prev,
values: entries
} = jsonResponse;
const pageCount = pageSize && count ? Math.ceil(count / pageSize) : undefined;
return {
entries,
cursor: _netlifyCmsLibUtil.Cursor.create({
actions: [...(next ? ['next'] : []), ...(prev ? ['prev'] : [])],
meta: {
page,
count,
pageSize,
pageCount
},
data: {
links: {
next,
prev
}
}
})
};
});
_defineProperty(this, "listFiles", async (path, depth = 1, pagelen, branch) => {
const node = await this.branchCommitSha(branch);
const result = await this.requestJSON({
url: `${this.repoURL}/src/${node}/${path}`,
params: {
max_depth: depth,
pagelen
}
}).catch(replace404WithEmptyResponse);
const {
entries,
cursor
} = this.getEntriesAndCursor(result);
return {
entries: this.processFiles(entries),
cursor: cursor
};
});
_defineProperty(this, "traverseCursor", async (cursor, action) => (0, _flow2.default)([this.requestJSON, (0, _netlifyCmsLibUtil.then)(this.getEntriesAndCursor), (0, _netlifyCmsLibUtil.then)(({
cursor: newCursor,
entries
}) => ({
cursor: newCursor,
entries: this.processFiles(entries)
}))])(cursor.data.getIn(['links', action])));
_defineProperty(this, "listAllFiles", async (path, depth, branch) => {
const {
cursor: initialCursor,
entries: initialEntries
} = await this.listFiles(path, depth, 100, branch);
const entries = [...initialEntries];
let currentCursor = initialCursor;
while (currentCursor && currentCursor.actions.has('next')) {
const {
cursor: newCursor,
entries: newEntries
} = await this.traverseCursor(currentCursor, 'next');
entries.push(...newEntries);
currentCursor = newCursor;
}
return this.processFiles(entries);
});
_defineProperty(this, "deleteFiles", (paths, message) => {
const body = new FormData();
paths.forEach(path => {
body.append('files', path);
});
body.append('branch', this.branch);
if (message) {
body.append('message', message);
}
if (this.commitAuthor) {
const {
name,
email
} = this.commitAuthor;
body.append('author', `${name} <${email}>`);
}
return (0, _flow2.default)([_netlifyCmsLibUtil.unsentRequest.withMethod('POST'), _netlifyCmsLibUtil.unsentRequest.withBody(body), this.request])(`${this.repoURL}/src`);
});
this.apiRoot = config.apiRoot || 'https://api.bitbucket.org/2.0';
this.branch = config.branch || 'master';
this.repo = config.repo || '';
this.requestFunction = config.requestFunction || _netlifyCmsLibUtil.unsentRequest.performRequest; // Allow overriding this.hasWriteAccess
this.hasWriteAccess = config.hasWriteAccess || this.hasWriteAccess;
this.repoURL = this.repo ? `/repositories/${this.repo}` : '';
this.mergeStrategy = config.squashMerges ? 'squash' : 'merge_commit';
this.initialWorkflowStatus = config.initialWorkflowStatus;
this.cmsLabelPrefix = config.cmsLabelPrefix;
}
async readFileMetadata(path, sha) {
const fetchFileMetadata = async () => {
try {
const {
values
} = await this.requestJSON({
url: `${this.repoURL}/commits`,
params: {
path,
include: this.branch
}
});
const commit = values[0];
return {
author: commit.author.user ? commit.author.user.display_name || commit.author.user.nickname : commit.author.raw,
updatedOn: commit.date
};
} catch (e) {
return {
author: '',
updatedOn: ''
};
}
};
const fileMetadata = await (0, _netlifyCmsLibUtil.readFileMetadata)(sha, fetchFileMetadata, _netlifyCmsLibUtil.localForage);
return fileMetadata;
}
async isShaExistsInBranch(branch, sha) {
const {
values
} = await this.requestJSON({
url: `${this.repoURL}/commits`,
params: {
include: branch,
pagelen: 100
}
}).catch(e => {
console.log(`Failed getting commits for branch '${branch}'`, e);
return [];
});
return values.some(v => v.hash === sha);
}
async uploadFiles(files, {
commitMessage,
branch,
parentSha
}) {
const formData = new FormData();
const toMove = [];
files.forEach(file => {
if (file.delete) {
// delete the file
formData.append('files', file.path);
} else if (file.newPath) {
const contentBlob = (0, _get2.default)(file, 'fileObj', new Blob([file.raw]));
toMove.push({
from: file.path,
to: file.newPath,
contentBlob
});
} else {
// add/modify the file
const contentBlob = (0, _get2.default)(file, 'fileObj', new Blob([file.raw])); // Third param is filename header, in case path is `message`, `branch`, etc.
formData.append(file.path, contentBlob, (0, _netlifyCmsLibUtil.basename)(file.path));
}
});
for (const {
from,
to,
contentBlob
} of toMove) {
const sourceDir = (0, _path.dirname)(from);
const destDir = (0, _path.dirname)(to);
const filesBranch = parentSha ? this.branch : branch;
const files = await this.listAllFiles(sourceDir, 100, filesBranch);
for (const file of files) {
// to move a file in Bitbucket we need to delete the old path
// and upload the file content to the new path
// NOTE: this is very wasteful, and also the Bitbucket `diff` API
// reports these files as deleted+added instead of renamed
// delete current path
formData.append('files', file.path); // create in new path
const content = file.path === from ? contentBlob : await this.readFile(file.path, null, {
branch: filesBranch,
parseText: false
});
formData.append(file.path.replace(sourceDir, destDir), content, (0, _netlifyCmsLibUtil.basename)(file.path));
}
}
if (commitMessage) {
formData.append('message', commitMessage);
}
if (this.commitAuthor) {
const {
name,
email
} = this.commitAuthor;
formData.append('author', `${name} <${email}>`);
}
formData.append('branch', branch);
if (parentSha) {
formData.append('parents', parentSha);
}
try {
await this.requestText({
url: `${this.repoURL}/src`,
method: 'POST',
body: formData
});
} catch (error) {
const message = error.message || ''; // very descriptive message from Bitbucket
if (parentSha && message.includes('Something went wrong')) {
await (0, _netlifyCmsLibUtil.throwOnConflictingBranches)(branch, name => this.getBranch(name), API_NAME);
}
throw error;
}
return files;
}
async persistFiles(dataFiles, mediaFiles, options) {
const files = [...dataFiles, ...mediaFiles];
if (options.useWorkflow) {
const slug = dataFiles[0].slug;
return this.editorialWorkflowGit(files, slug, options);
} else {
return this.uploadFiles(files, {
commitMessage: options.commitMessage,
branch: this.branch
});
}
}
async addPullRequestComment(pullRequest, comment) {
await this.requestJSON({
method: 'POST',
url: `${this.repoURL}/pullrequests/${pullRequest.id}/comments`,
headers: {
'Content-Type': APPLICATION_JSON
},
body: JSON.stringify({
content: {
raw: comment
}
})
});
}
async getPullRequestLabel(id) {
const comments = await this.requestJSON({
url: `${this.repoURL}/pullrequests/${id}/comments`,
params: {
pagelen: 100
}
});
return comments.values.map(c => c.content.raw)[comments.values.length - 1];
}
async createPullRequest(branch, commitMessage, status) {
const pullRequest = await this.requestJSON({
method: 'POST',
url: `${this.repoURL}/pullrequests`,
headers: {
'Content-Type': APPLICATION_JSON
},
body: JSON.stringify({
title: commitMessage,
source: {
branch: {
name: branch
}
},
destination: {
branch: {
name: this.branch
}
},
description: _netlifyCmsLibUtil.DEFAULT_PR_BODY,
close_source_branch: true
})
}); // use comments for status labels
await this.addPullRequestComment(pullRequest, (0, _netlifyCmsLibUtil.statusToLabel)(status, this.cmsLabelPrefix));
}
async getDifferences(source, destination = this.branch) {
if (source === destination) {
return [];
}
const rawDiff = await this.requestText({
url: `${this.repoURL}/diff/${source}..${destination}`,
params: {
binary: false
}
});
const diffs = (0, _whatTheDiff.parse)(rawDiff).map(d => {
var _d$oldPath, _d$newPath;
const oldPath = ((_d$oldPath = d.oldPath) === null || _d$oldPath === void 0 ? void 0 : _d$oldPath.replace(/b\//, '')) || '';
const newPath = ((_d$newPath = d.newPath) === null || _d$newPath === void 0 ? void 0 : _d$newPath.replace(/b\//, '')) || '';
const path = newPath || oldPath;
return {
oldPath,
newPath,
status: d.status,
newFile: d.status === 'added',
path,
binary: d.binary || /.svg$/.test(path)
};
});
return diffs;
}
async editorialWorkflowGit(files, slug, options) {
const contentKey = (0, _netlifyCmsLibUtil.generateContentKey)(options.collectionName, slug);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const unpublished = options.unpublished || false;
if (!unpublished) {
const defaultBranchSha = await this.branchCommitSha(this.branch);
await this.uploadFiles(files, {
commitMessage: options.commitMessage,
branch,
parentSha: defaultBranchSha
});
await this.createPullRequest(branch, options.commitMessage, options.status || this.initialWorkflowStatus);
} else {
// mark files for deletion
const diffs = await this.getDifferences(branch);
const toDelete = [];
for (const diff of diffs.filter(d => d.binary && d.status !== 'deleted')) {
if (!files.some(file => file.path === diff.path)) {
toDelete.push({
path: diff.path,
delete: true
});
}
}
await this.uploadFiles([...files, ...toDelete], {
commitMessage: options.commitMessage,
branch
});
}
}
async getPullRequests(sourceBranch) {
const sourceQuery = sourceBranch ? `source.branch.name = "${sourceBranch}"` : `source.branch.name ~ "${_netlifyCmsLibUtil.CMS_BRANCH_PREFIX}/"`;
const pullRequests = await this.requestJSON({
url: `${this.repoURL}/pullrequests`,
params: {
pagelen: 50,
q: (0, _commonTags.oneLine)`
source.repository.full_name = "${this.repo}"
AND state = "${BitBucketPullRequestState.OPEN}"
AND destination.branch.name = "${this.branch}"
AND comment_count > 0
AND ${sourceQuery}
`
}
});
const labels = await Promise.all(pullRequests.values.map(pr => this.getPullRequestLabel(pr.id)));
return pullRequests.values.filter((_, index) => (0, _netlifyCmsLibUtil.isCMSLabel)(labels[index], this.cmsLabelPrefix));
}
async getBranchPullRequest(branch) {
const pullRequests = await this.getPullRequests(branch);
if (pullRequests.length <= 0) {
throw new _netlifyCmsLibUtil.EditorialWorkflowError('content is not under editorial workflow', true);
}
return pullRequests[0];
}
async listUnpublishedBranches() {
console.log('%c Checking for Unpublished entries', 'line-height: 30px;text-align: center;font-weight: bold');
const pullRequests = await this.getPullRequests();
const branches = pullRequests.map(mr => mr.source.branch.name);
return branches;
}
async retrieveUnpublishedEntryData(contentKey) {
const {
collection,
slug
} = (0, _netlifyCmsLibUtil.parseContentKey)(contentKey);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const pullRequest = await this.getBranchPullRequest(branch);
const diffs = await this.getDifferences(branch);
const label = await this.getPullRequestLabel(pullRequest.id);
const status = (0, _netlifyCmsLibUtil.labelToStatus)(label, this.cmsLabelPrefix);
const updatedAt = pullRequest.updated_on;
const pullRequestAuthor = pullRequest.author.display_name;
return {
collection,
slug,
status,
// TODO: get real id
diffs: diffs.filter(d => d.status !== 'deleted').map(d => ({
path: d.path,
newFile: d.newFile,
id: ''
})),
updatedAt,
pullRequestAuthor
};
}
async updateUnpublishedEntryStatus(collection, slug, newStatus) {
const contentKey = (0, _netlifyCmsLibUtil.generateContentKey)(collection, slug);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const pullRequest = await this.getBranchPullRequest(branch);
await this.addPullRequestComment(pullRequest, (0, _netlifyCmsLibUtil.statusToLabel)(newStatus, this.cmsLabelPrefix));
}
async mergePullRequest(pullRequest) {
await this.requestJSON({
method: 'POST',
url: `${this.repoURL}/pullrequests/${pullRequest.id}/merge`,
headers: {
'Content-Type': APPLICATION_JSON
},
body: JSON.stringify({
message: _netlifyCmsLibUtil.MERGE_COMMIT_MESSAGE,
close_source_branch: true,
merge_strategy: this.mergeStrategy
})
});
}
async publishUnpublishedEntry(collectionName, slug) {
const contentKey = (0, _netlifyCmsLibUtil.generateContentKey)(collectionName, slug);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const pullRequest = await this.getBranchPullRequest(branch);
await this.mergePullRequest(pullRequest);
}
async declinePullRequest(pullRequest) {
await this.requestJSON({
method: 'POST',
url: `${this.repoURL}/pullrequests/${pullRequest.id}/decline`
});
}
async deleteBranch(branch) {
await this.request({
method: 'DELETE',
url: `${this.repoURL}/refs/branches/${branch}`
});
}
async deleteUnpublishedEntry(collectionName, slug) {
const contentKey = (0, _netlifyCmsLibUtil.generateContentKey)(collectionName, slug);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const pullRequest = await this.getBranchPullRequest(branch);
await this.declinePullRequest(pullRequest);
await this.deleteBranch(branch);
}
async getPullRequestStatuses(pullRequest) {
const statuses = await this.requestJSON({
url: `${this.repoURL}/pullrequests/${pullRequest.id}/statuses`,
params: {
pagelen: 100
}
});
return statuses.values;
}
async getStatuses(collectionName, slug) {
const contentKey = (0, _netlifyCmsLibUtil.generateContentKey)(collectionName, slug);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const pullRequest = await this.getBranchPullRequest(branch);
const statuses = await this.getPullRequestStatuses(pullRequest);
return statuses.map(({
key,
state,
url
}) => ({
context: key,
state: state === BitBucketPullRequestStatusState.Successful ? _netlifyCmsLibUtil.PreviewState.Success : _netlifyCmsLibUtil.PreviewState.Other,
target_url: url
}));
}
async getUnpublishedEntrySha(collection, slug) {
const contentKey = (0, _netlifyCmsLibUtil.generateContentKey)(collection, slug);
const branch = (0, _netlifyCmsLibUtil.branchFromContentKey)(contentKey);
const pullRequest = await this.getBranchPullRequest(branch);
return pullRequest.destination.commit.hash;
}
}
exports.default = API;