Tina Docs
Introduction
Core Concepts
Querying Content
Editing
Customizing Tina
Going To Production
Drafts
Guides
Further Reference

Implement a Git Provider is easy. It is a class or object that implements the GitProvider interface.

GitProvider Interface

export interface GitProvider {
onPut: (key: string, value: string) => Promise<void>
onDelete: (key: string) => Promise<void>
}

onPut

This is used to save content to Git. It is called whenever a value is saved in the CMS.

onDelete

This is used to delete content from Git. It is called whenever a value is deleted in the CMS.

Example

Here is the source code for the GitHub Git Provider. It is a good example of how to implement the GitProvider interface.

import { Octokit } from '@octokit/rest'
import { Base64 } from 'js-base64'
import type { GitProvider } from '@tinacms/graphql'
type OctokitOptions = ConstructorParameters<typeof Octokit>[0]
export interface GitHubProviderOptions {
owner: string
repo: string
token: string
branch: string
commitMessage?: string
rootPath?: string
octokitOptions?: OctokitOptions
}
export class MyGitHubProvider implements GitProvider {
octokit: Octokit
owner: string
repo: string
branch: string
rootPath?: string
commitMessage?: string
constructor(args: GitHubProviderOptions) {
this.owner = args.owner
this.repo = args.repo
this.branch = args.branch
this.commitMessage = args.commitMessage
this.rootPath = args.rootPath
this.octokit = new Octokit({
auth: args.token,
...(args.octokitOptions || {}),
})
}
async onPut(key: string, value: string) {
let sha
const keyWithPath = this.rootPath ? `${this.rootPath}/${key}` : key
try {
const {
// @ts-ignore
data: { sha: existingSha },
} = await this.octokit.repos.getContent({
owner: this.owner,
repo: this.repo,
path: keyWithPath,
ref: this.branch,
})
sha = existingSha
} catch (e) {}
await this.octokit.repos.createOrUpdateFileContents({
owner: this.owner,
repo: this.repo,
path: keyWithPath,
message: this.commitMessage || 'Edited with TinaCMS',
content: Base64.encode(value),
branch: this.branch,
sha,
})
}
async onDelete(key: string) {
let sha
const keyWithPath = this.rootPath ? `${this.rootPath}/${key}` : key
try {
const {
// @ts-ignore
data: { sha: existingSha },
} = await this.octokit.repos.getContent({
owner: this.owner,
repo: this.repo,
path: keyWithPath,
ref: this.branch,
})
sha = existingSha
} catch (e) {}
if (sha) {
await this.octokit.repos.deleteFile({
owner: this.owner,
repo: this.repo,
path: keyWithPath,
message: this.commitMessage || 'Edited with TinaCMS',
branch: this.branch,
sha,
})
} else {
throw new Error(
`Could not find file ${keyWithPath} in repo ${this.owner}/${this.repo}`
)
}
}
}

Adding your Git Provider

This can now be used as a prop to the createDatabase function.

database.ts,js:

import { createDatabase, createLocalDatabase } from '@tinacms/datalayer'
import { MyGitHubProvider } from './my-git-provider'
//...
export default isLocal ? createLocalDatabase() ? createDatabase({
gitProvider: new MyGitHubProvider({
//... Options
}),
// ...
})

Last Edited: November 7, 2024