You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.2 KiB
54 lines
2.2 KiB
"use strict"; |
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { |
|
if (k2 === undefined) k2 = k; |
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); |
|
}) : (function(o, m, k, k2) { |
|
if (k2 === undefined) k2 = k; |
|
o[k2] = m[k]; |
|
})); |
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { |
|
Object.defineProperty(o, "default", { enumerable: true, value: v }); |
|
}) : function(o, v) { |
|
o["default"] = v; |
|
}); |
|
var __importStar = (this && this.__importStar) || function (mod) { |
|
if (mod && mod.__esModule) return mod; |
|
var result = {}; |
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); |
|
__setModuleDefault(result, mod); |
|
return result; |
|
}; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
exports.getOctokitOptions = exports.GitHub = exports.context = void 0; |
|
const Context = __importStar(require("./context")); |
|
const Utils = __importStar(require("./internal/utils")); |
|
// octokit + plugins |
|
const core_1 = require("@octokit/core"); |
|
const plugin_rest_endpoint_methods_1 = require("@octokit/plugin-rest-endpoint-methods"); |
|
const plugin_paginate_rest_1 = require("@octokit/plugin-paginate-rest"); |
|
exports.context = new Context.Context(); |
|
const baseUrl = Utils.getApiBaseUrl(); |
|
const defaults = { |
|
baseUrl, |
|
request: { |
|
agent: Utils.getProxyAgent(baseUrl) |
|
} |
|
}; |
|
exports.GitHub = core_1.Octokit.plugin(plugin_rest_endpoint_methods_1.restEndpointMethods, plugin_paginate_rest_1.paginateRest).defaults(defaults); |
|
/** |
|
* Convience function to correctly format Octokit Options to pass into the constructor. |
|
* |
|
* @param token the repo PAT or GITHUB_TOKEN |
|
* @param options other options to set |
|
*/ |
|
function getOctokitOptions(token, options) { |
|
const opts = Object.assign({}, options || {}); // Shallow clone - don't mutate the object provided by the caller |
|
// Auth |
|
const auth = Utils.getAuthString(token, opts); |
|
if (auth) { |
|
opts.auth = auth; |
|
} |
|
return opts; |
|
} |
|
exports.getOctokitOptions = getOctokitOptions; |
|
//# sourceMappingURL=utils.js.map
|