repository-provider
v35.2.26
Published
abstract interface to git repository providers like github, bitbucket and gitlab
Downloads
5,682
Readme
repository-provider
abstract interface to git repository providers like github, bitbucket, gitlab, gitea, ...
see list of avaliable implementations below
Example
import { Provider } from 'repository-provider';
const provider = new Provider({ /* access options as hosts and credentials */ });
const branch = await provider.branch('myuser/myrepo#myBranch');
for await (const entry of branch.entries('**/*.md')) {
console.log(entry.name);
}
const readme = await branch.entry('README.md');
console.log(await readme.string);
Derived Providers
list by repository-provider keyword
API
Table of Contents
- Application
- definePropertiesFromOptions
- defaultValues
- optionJSON
- mapAttributes
- mapAttributesInverse
- default_attribute
- default_attribute
- boolean_attribute
- boolean_read_only_attribute
- uuid_attribute
- empty_attribute
- secret_attribute
- count_attribute
- size_attribute
- name_attribute
- url_attribute
- description_attribute
- id_attribute
- state_attribute
- body_attribute
- title_attribute
- priority_attribute
- active_attribute
- language_attribute
- type_attribute
- BaseObject
- BaseProvider
- equals
- repositoryBases
- supportsBase
- normalizeRepositoryName
- normalizeGroupName
- areRepositoryNamesCaseSensitive
- areGroupNamesCaseSensitive
- parseName
- createRepository
- list
- projects
- milestones
- repositories
- branches
- tags
- hooks
- pullRequests
- name
- provider
- toJSON
- instanceIdentifier
- optionsFromEnvironment
- areOptionsSufficcient
- initialize
- BaseProvider
- Parameters
- Properties
- equals
- repositoryBases
- supportsBase
- normalizeRepositoryName
- normalizeGroupName
- areRepositoryNamesCaseSensitive
- areGroupNamesCaseSensitive
- parseName
- createRepository
- list
- projects
- milestones
- repositories
- branches
- tags
- hooks
- pullRequests
- name
- provider
- toJSON
- instanceIdentifier
- optionsFromEnvironment
- areOptionsSufficcient
- initialize
- DecodedRepositoryName
- MessageDestination
- name
- name
- messageDestination
- parsedName
- Branch
- CommitResult
- Commit
- Hook
- Issue
- Milestone
- MultiGroupProvider
- NamedObject
- OwnedObject
- OwnedObject
- Project
- PullRequest
- state
- locked
- merged
- draft
- Ref
- Ref
- isProtected
- RepositoryGroup
- type
- homePageURL
- RepositoryOwner
- Repository
- Parameters
- Properties
- slug
- url
- entry
- entries
- maybeEntry
- commits
- cloneURL
- issuesURL
- homePageURL
- isArchived
- isLocked
- isDisabled
- isTemplate
- delete
- defaultBranch
- branch
- hasBranches
- branches
- createBranch
- addBranch
- deleteBranch
- tag
- tags
- addTag
- createPullRequest
- addPullRequest
- pullRequests
- pullRequest
- deletePullRequest
- addHook
- createHook
- hooks
- hook
- milestone
- project
- application
- type
- refId
- attributes
- defaultBranchName
- branches
- tags
- projects
- applications
- milestones
- pullRequests
- Review
- SingleGroupProvider
- Tag
- asArray
- stripBaseName
- stripBaseNames
- generateBranchName
Application
Extends OwnedObject
definePropertiesFromOptions
- See: Object.definedProperties()
- See: Object.getOwnPropertyDescriptor()
Create properties from options and default options. Already present properties (direct) are skipped. The attribute list from the class will be applied to the options and merged with the given set of properties.
class aClass {
static get attributes() {
return { with_default: { default: 77 }};
}
}
definePropertiesFromOptions(new aClass());
// equivalent to
Object.definedProperties(new aClass(),{ with_default: { value: 77 }})
Parameters
object
Object target objectoptions
Object as passed to object constructor. Used as values for the attributes. (optional, default{}
)properties
Object object properties (optional, default{}
)attributes
Object? attribute meta info (optional, defaultobject.constructor.attributes
)
defaultValues
Get default values.
Parameters
Returns Object filled with default values
optionJSON
Create json based on present options. In other words only produce key value pairs if value is defined.
Parameters
object
Objectinitial
Object (optional, default{}
)attributes
Object to operator on (optional, defaultobject.constructor.attributes
)
Returns Object initial + defined values
mapAttributes
Rename attributes. Filters out null, undefined and empty strings.
mapAttributes({a:1},{a:"a'"}) // {"a'": 1}
Parameters
Returns Object keys renamed after mapping
mapAttributesInverse
Same as mapAttributes but with the inverse mapping. Filters out null, undefined and empty strings
Parameters
Returns Object keys renamed after mapping
default_attribute
default_attribute
Common attribute properties.
Type: AttributeDefinition
boolean_attribute
Type: AttributeDefinition
boolean_read_only_attribute
Type: AttributeDefinition
uuid_attribute
Type: AttributeDefinition
empty_attribute
Type: AttributeDefinition
secret_attribute
Type: AttributeDefinition
count_attribute
Type: AttributeDefinition
size_attribute
Type: AttributeDefinition
name_attribute
Type: AttributeDefinition
url_attribute
Type: AttributeDefinition
description_attribute
The description of the object content.
Type: AttributeDefinition
id_attribute
Unique id within the provider.
Type: AttributeDefinition
state_attribute
Type: AttributeDefinition
body_attribute
The body text of the pull request.
Type: AttributeDefinition
title_attribute
The one line description of the pull request.
Type: AttributeDefinition
priority_attribute
In case there are several providers able to support a given source which one sould be used ? this defines the order.
Type: AttributeDefinition
active_attribute
Type: AttributeDefinition
language_attribute
Type: AttributeDefinition
type_attribute
Type: AttributeDefinition
BaseObject
Creates an instance of BaseObject.
Parameters
Properties
id
Type: string
description
Type: string
updateAttributes
Takes values from options.
Parameters
update
Save object attributes in the backing store.
toString
Returns string fullName
fullName
Complete name in the hierachy.
Returns string
isWritable
By default cannot be written to.
Returns boolean false
equals
Check for equality
Parameters
other
(BaseObject | undefined)
Returns boolean true if other is present
type
Returns string type we represent
collectionName
Tag -> tags
Repository -> repositories
Returns string name of the collection holding us in the owner
attributes
Attributes definitions.
Returns Object
writableAttributes
User modifyable attributes.
Returns Object writable attributes
attributeMapping
Map attributes between external and internal representation.
Returns Object
BaseProvider
Extends BaseObject
equals
Parameters
other
any
Returns boolean true if other provider is the same as the receiver
repositoryBases
All supported base urls. For github something like:
- [email protected]
- git://github.com
- git+ssh://github.com
- https://github.com
- git+https://github.com By default we provide provider name with ':'.
Returns Array<string> common base urls of all repositories
supportsBase
Does the provider support the base name.
Parameters
base
string? to be checked
Returns boolean true if base is supported or base is undefined
normalizeRepositoryName
Bring a repository name into its normal form by removing any clutter. Like .git suffix or #branch names.
Parameters
Returns (string | undefined) normalized name
normalizeGroupName
Bring a group name into its normal form by removing any clutter. Like .git suffix or #branch names.
Parameters
Returns (string | undefined) normalized name
areRepositoryNamesCaseSensitive
Are repository names case sensitive. Overwrite and return false if you want to have case insensitive repository lookup.
Returns boolean true
areGroupNamesCaseSensitive
Are repositroy group names case sensitive. Overwrite and return false if you want to have case insensitive group lookup.
Returns boolean true
parseName
Parses repository name and tries to split it into base, group, repository and branch.
Parameters
name
string?focus
string where lies the focus if only one path component is given (optional, default"repository"
)
Returns DecodedRepositoryName result
createRepository
Create a repository.
Parameters
Returns Promise<Repository>
list
List provider objects of a given type.
Parameters
type
string name of the method to deliver typed iterator projects,milestones,hooks,repositories,branches,tagspatterns
Array<string> group / repository filter
Returns AsyncIterable<(Repository | PullRequest | Branch | Tag | Project | Milestone | Hook)> all matching repositories of the providers
projects
List projects.
Parameters
Returns AsyncIterable<Project> all matching projects of the provider
milestones
List milestones.
Parameters
Returns AsyncIterable<Milestone> all matching milestones of the provider
repositories
List repositories.
Parameters
Returns AsyncIterable<Repository> all matching repos of the provider
branches
List branches.
Parameters
Returns AsyncIterable<Branch> all matching branches of the provider
tags
List tags.
Parameters
Returns AsyncIterable<Tag> all matching tags of the provider
hooks
List hooks.
Parameters
Returns AsyncIterable<Hook> all matching hooks of the provider
pullRequests
List pull requests.
Parameters
Returns AsyncIterable<PullRequest> all matching pullRequests of the provider
name
Deliver the provider name.
Returns string class name by default
provider
We are our own provider.
Returns BaseProvider this
toJSON
List all defined entries from attributes.
Returns {name: string}
instanceIdentifier
Prefix used to form environment variables. 'GITHUB_' -> 'GITHUB_TOKEN'
Returns string identifier for environment options
optionsFromEnvironment
Extract options suitable for the constructor. Form the given set of environment variables. Object with the detected key value pairs is delivered.
Parameters
env
Object? as from process.envinstanceIdentifier
string part of variable name. (optional, defaultthis.instanceIdentifier
)
Returns (Object | undefined) undefined if no suitable environment variables have been found
areOptionsSufficcient
Check if given options are sufficient to create a provider.
Parameters
options
Object
Returns boolean true if options ar sufficient to construct a provider
initialize
Creates a new provider for a given set of options.
Parameters
Returns (BaseProvider | undefined) newly created provider or undefined if options are not sufficient to construct a provider
BaseProvider
Extends BaseObject
Parameters
options
Object?options.url
string?options.messageDestination
MessageDestination?
Properties
messageDestination
MessageDestinationurl
stringapi
string
equals
Parameters
other
any
Returns boolean true if other provider is the same as the receiver
repositoryBases
All supported base urls. For github something like:
- [email protected]
- git://github.com
- git+ssh://github.com
- https://github.com
- git+https://github.com By default we provide provider name with ':'.
Returns Array<string> common base urls of all repositories
supportsBase
Does the provider support the base name.
Parameters
base
string? to be checked
Returns boolean true if base is supported or base is undefined
normalizeRepositoryName
Bring a repository name into its normal form by removing any clutter. Like .git suffix or #branch names.
Parameters
Returns (string | undefined) normalized name
normalizeGroupName
Bring a group name into its normal form by removing any clutter. Like .git suffix or #branch names.
Parameters
Returns (string | undefined) normalized name
areRepositoryNamesCaseSensitive
Are repository names case sensitive. Overwrite and return false if you want to have case insensitive repository lookup.
Returns boolean true
areGroupNamesCaseSensitive
Are repositroy group names case sensitive. Overwrite and return false if you want to have case insensitive group lookup.
Returns boolean true
parseName
Parses repository name and tries to split it into base, group, repository and branch.
Parameters
name
string?focus
string where lies the focus if only one path component is given (optional, default"repository"
)
Returns DecodedRepositoryName result
createRepository
Create a repository.
Parameters
Returns Promise<Repository>
list
List provider objects of a given type.
Parameters
type
string name of the method to deliver typed iterator projects,milestones,hooks,repositories,branches,tagspatterns
Array<string> group / repository filter
Returns AsyncIterable<(Repository | PullRequest | Branch | Tag | Project | Milestone | Hook)> all matching repositories of the providers
projects
List projects.
Parameters
Returns AsyncIterable<Project> all matching projects of the provider
milestones
List milestones.
Parameters
Returns AsyncIterable<Milestone> all matching milestones of the provider
repositories
List repositories.
Parameters
Returns AsyncIterable<Repository> all matching repos of the provider
branches
List branches.
Parameters
Returns AsyncIterable<Branch> all matching branches of the provider
tags
List tags.
Parameters
Returns AsyncIterable<Tag> all matching tags of the provider
hooks
List hooks.
Parameters
Returns AsyncIterable<Hook> all matching hooks of the provider
pullRequests
List pull requests.
Parameters
Returns AsyncIterable<PullRequest> all matching pullRequests of the provider
name
Deliver the provider name.
Returns string class name by default
provider
We are our own provider.
Returns BaseProvider this
toJSON
List all defined entries from attributes.
Returns {name: string}
instanceIdentifier
Prefix used to form environment variables. 'GITHUB_' -> 'GITHUB_TOKEN'
Returns string identifier for environment options
optionsFromEnvironment
Extract options suitable for the constructor. Form the given set of environment variables. Object with the detected key value pairs is delivered.
Parameters
env
Object? as from process.envinstanceIdentifier
string part of variable name. (optional, defaultthis.instanceIdentifier
)
Returns (Object | undefined) undefined if no suitable environment variables have been found
areOptionsSufficcient
Check if given options are sufficient to create a provider.
Parameters
options
Object
Returns boolean true if options ar sufficient to construct a provider
initialize
Creates a new provider for a given set of options.
Parameters
Returns (BaseProvider | undefined) newly created provider or undefined if options are not sufficient to construct a provider
DecodedRepositoryName
Type: Object
Properties
MessageDestination
Type: Object
Properties
info
function (string): voiddebug
function (string): voidwarn
function (string): voiderror
function (string): voidtrace
function (string): void
name
Name of the provider.
name
Type: string
messageDestination
To forward info/warn and error messages to
parsedName
Type: Object
Branch
Abstract branch.
Parameters
owner
RepositoryOwnername
stringoptions
Object
Properties
repository
Repositoryprovider
Providername
string
url
Deliver repository and branch url combined.
Returns string 'repoUrl#branch'
refType
Returns string heades
isWritable
Returns any true if not isArchived and isDisabled and isLocked and isProtected
isDefault
Are we the default branch.
Returns boolean true if name matches the repository default branch
delete
Delete the branch from the Repository.
Returns Promise<any>
commit
Commit entries.
Parameters
Returns Promise<(CommitResult | undefined)>
commitIntoPullRequest
Add commits into a pull request.
Parameters
options
Objectoptions.pullRequestBranch
(Branch | string) to commit intooptions.dry
boolean do not create a branch and do not commit only create dummy PR (optional, defaultfalse
)options.skipWithoutCommits
boolean do not create a PR if no commits are givenoptions.bodyFromCommitMessages
boolean generate body from commit messagesoptions.body
string? body of the PR
Returns Promise<PullRequest>
removeEntries
Remove entries form the branch.
Parameters
entries
AsyncIterable<ContentEntry>
createPullRequest
Create a pull request.
Parameters
Returns Promise<PullRequest>
createBranch
Create a new Branch by cloning a given source branch. Simply calls Repository.createBranch() with the receiver as source branch
Parameters
Returns Promise<Branch> newly created branch (or already present old one with the same name)
CommitResult
Parameters
ref
Properties
ref
string
Commit
Parameters
repository
Properties
repository
Repositorymessage
stringsha
stringauthor
Usercommitter
User
Hook
Extends OwnedObject
Repository hook.
Issue
Extends OwnedObject
Milestone
Extends OwnedObject
MultiGroupProvider
Extends BaseProvider
Provider supporting serveral repository groups.
repository
Lookup a repository in the provider and all of its repository groups.
Parameters
name
string of the repository
Returns Promise<(Repository | undefined)>
branch
Lookup a branch.
Parameters
name
string of the branch
Returns Promise<(Branch | undefined)>
repositoryGroup
Lookup a repository group.
Parameters
name
string of the group
Returns Promise<(RepositoryGroup | undefined)>
repositoryGroups
List groups.
Parameters
Returns AsyncIterable<RepositoryGroup> all matching repositories groups of the provider
createRepositoryGroup
Create a new repository group. If there is already a group for the given name it will be returend instead
Parameters
Returns Promise<RepositoryGroup>
addRepositoryGroup
Add a new repository group (not provider specific actions are executed).
Parameters
Returns RepositoryGroup
NamedObject
Extends BaseObject
Object with a name.
Parameters
Properties
name
string
displayName
Beautified name use for human displaying only.
Returns string human readable name
condensedName
Name with default parts removed
Returns string
fullCondensedName
Complete name in the hierachy.
Returns string
equals
Check for equality.
Parameters
other
NamedObject
Returns boolean true if names are equal and have the same provider
toJSON
Provided name and all defined attributes.
OwnedObject
Extends NamedObject
Parameters
owner
name
options
additionalProperties
delete
Removes the receiver from the owner.
equals
Check for equality.
Parameters
other
OwnedObject
Returns boolean true if receiver and owner are equal
homePageURL
Url of home page.
Returns (string | undefined) as provided from the owner
issuesURL
- See: Repository#issuesURL
Url of issue tracking system.
Returns (string | undefined) as provided from the repository
isLocked
Forwarded from the owner.
Returns boolean
isArchived
Forwarded from the owner.
Returns boolean
isDisabled
Forwarded from the owner.
Returns boolean
api
API as given by the owner.
Returns string url
slug
API as given by the owner.
Returns string url
url
URL as given by the owner.
Returns string url
provider
The provider we live in.
Returns BaseProvider
identifier
Short human readable identifier with provider and branch.
Returns string
fullName
Returns string name with owner name
trace
Forwarded to the owner.
Parameters
args
...any
info
Forwarded to the owner.
Parameters
args
...any
warn
Forwarded to the owner.
Parameters
args
...any
error
Forwarded to the owner.
Parameters
args
...any
debug
Forwarded to the owner.
Parameters
args
...any
addMethodName
Method name to be called to register one instance in the owner. sample: Application => _addApplication
Returns string
deleteMethodName
Method name to be called to unregister one instance in the owner. sample: Application => _deleteApplication
Returns string
OwnedObject
Extends NamedObject
Named Object registering itself in the owner.
Parameters
owner
name
options
additionalProperties
delete
Removes the receiver from the owner.
equals
Check for equality.
Parameters
other
OwnedObject
Returns boolean true if receiver and owner are equal
homePageURL
Url of home page.
Returns (string | undefined) as provided from the owner
issuesURL
- See: Repository#issuesURL
Url of issue tracking system.
Returns (string | undefined) as provided from the repository
isLocked
Forwarded from the owner.
Returns boolean
isArchived
Forwarded from the owner.
Returns boolean
isDisabled
Forwarded from the owner.
Returns boolean
api
API as given by the owner.
Returns string url
slug
API as given by the owner.
Returns string url
url
URL as given by the owner.
Returns string url
provider
The provider we live in.
Returns BaseProvider
identifier
Short human readable identifier with provider and branch.
Returns string
fullName
Returns string name with owner name
trace
Forwarded to the owner.
Parameters
args
...any
info
Forwarded to the owner.
Parameters
args
...any
warn
Forwarded to the owner.
Parameters
args
...any
error
Forwarded to the owner.
Parameters
args
...any
debug
Forwarded to the owner.
Parameters
args
...any
addMethodName
Method name to be called to register one instance in the owner. sample: Application => _addApplication
Returns string
deleteMethodName
Method name to be called to unregister one instance in the owner. sample: Application => _deleteApplication
Returns string
Project
Extends OwnedObject
PullRequest
Extends OwnedObject
Abstract pull request. Repository#addPullRequest