mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-17 20:49:32 +00:00
243 lines
7.7 KiB
Svelte
243 lines
7.7 KiB
Svelte
<script lang="ts">
|
|
export let source: any;
|
|
export let settings: any;
|
|
import { page } from '$app/stores';
|
|
import { getAPIUrl, getWebhookUrl, post } from '$lib/api';
|
|
import { t } from '$lib/translations';
|
|
import { dashify, errorNotification, getDomain } from '$lib/common';
|
|
import { addToast, appSession } from '$lib/store';
|
|
import { dev } from '$app/env';
|
|
import Explainer from '$lib/components/Explainer.svelte';
|
|
|
|
const { id } = $page.params;
|
|
|
|
$: selfHosted = source.htmlUrl !== 'https://github.com';
|
|
|
|
let loading = false;
|
|
|
|
async function handleSubmit() {
|
|
loading = true;
|
|
try {
|
|
await post(`/sources/${id}`, {
|
|
name: source.name,
|
|
htmlUrl: source.htmlUrl.replace(/\/$/, ''),
|
|
apiUrl: source.apiUrl.replace(/\/$/, '')
|
|
});
|
|
return addToast({
|
|
message: 'Configuration saved.',
|
|
type: 'success'
|
|
});
|
|
} catch (error) {
|
|
return errorNotification(error);
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}
|
|
|
|
async function newGithubApp() {
|
|
loading = true;
|
|
try {
|
|
const { id } = await post(`/sources/new/github`, {
|
|
type: 'github',
|
|
name: source.name,
|
|
htmlUrl: source.htmlUrl.replace(/\/$/, ''),
|
|
apiUrl: source.apiUrl.replace(/\/$/, ''),
|
|
organization: source.organization,
|
|
customPort: source.customPort
|
|
});
|
|
const { organization, htmlUrl } = source;
|
|
const { fqdn, ipv4, ipv6 } = settings;
|
|
const host = dev ? getAPIUrl() : fqdn ? fqdn : `http://${ipv4 || ipv6}` || '';
|
|
const domain = getDomain(fqdn);
|
|
|
|
let url = 'settings/apps/new';
|
|
if (organization) url = `organizations/${organization}/settings/apps/new`;
|
|
const name = dashify(domain) || 'app';
|
|
const data = JSON.stringify({
|
|
name: `coolify-${name}`,
|
|
url: host,
|
|
hook_attributes: {
|
|
url: dev ? getWebhookUrl('github') : `${host}/webhooks/github/events`
|
|
},
|
|
redirect_url: `${host}/webhooks/github`,
|
|
callback_urls: [`${host}/login/github/app`],
|
|
public: false,
|
|
request_oauth_on_install: false,
|
|
setup_url: `${host}/webhooks/github/install?gitSourceId=${id}`,
|
|
setup_on_update: true,
|
|
default_permissions: {
|
|
contents: 'read',
|
|
metadata: 'read',
|
|
pull_requests: 'read',
|
|
emails: 'read'
|
|
},
|
|
default_events: ['pull_request', 'push']
|
|
});
|
|
const form = document.createElement('form');
|
|
form.setAttribute('method', 'post');
|
|
form.setAttribute('action', `${htmlUrl}/${url}?state=${id}`);
|
|
const input = document.createElement('input');
|
|
input.setAttribute('id', 'manifest');
|
|
input.setAttribute('name', 'manifest');
|
|
input.setAttribute('type', 'hidden');
|
|
input.setAttribute('value', data);
|
|
form.appendChild(input);
|
|
document.getElementsByTagName('body')[0].appendChild(form);
|
|
form.submit();
|
|
} catch (error) {
|
|
return errorNotification(error);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="mx-auto max-w-4xl px-6">
|
|
{#if !source.githubAppId}
|
|
<form on:submit|preventDefault={newGithubApp} class="py-4">
|
|
<div class="grid gap-1 lg:grid-flow-col pb-7">
|
|
<div class="title">General</div>
|
|
{#if !source.githubAppId}
|
|
<button class="btn btn-sm bg-sources" type="submit">Save & Redirect to GitHub</button>
|
|
{/if}
|
|
</div>
|
|
<div class="grid grid-flow-row gap-2 px-10">
|
|
<div class="grid grid-flow-row gap-2">
|
|
<div class="mt-2 grid lg:grid-cols-2 items-center">
|
|
<label for="name" class="text-base font-bold text-stone-100">Name</label>
|
|
<input name="name" id="name" required bind:value={source.name} />
|
|
</div>
|
|
</div>
|
|
<div class="grid lg:grid-cols-2 items-center">
|
|
<label for="htmlUrl" class="text-base font-bold text-stone-100">HTML URL</label>
|
|
<input name="htmlUrl" id="htmlUrl" required bind:value={source.htmlUrl} />
|
|
</div>
|
|
<div class="grid lg:grid-cols-2 items-center">
|
|
<label for="apiUrl" class="text-base font-bold text-stone-100">API URL</label>
|
|
<input name="apiUrl" id="apiUrl" required bind:value={source.apiUrl} />
|
|
</div>
|
|
<div class="grid lg:grid-cols-2 items-center">
|
|
<label for="customPort" class="text-base font-bold text-stone-100"
|
|
>Custom SSH Port <Explainer
|
|
explanation={'If you use a self-hosted version of Git, you can provide custom port for all the Git related actions.'}
|
|
/></label
|
|
>
|
|
<input
|
|
name="customPort"
|
|
id="customPort"
|
|
disabled={!selfHosted || source.githubAppId}
|
|
readonly={!selfHosted || source.githubAppId}
|
|
required
|
|
value={source.customPort}
|
|
/>
|
|
</div>
|
|
<div class="grid lg:grid-cols-2">
|
|
<div class="flex flex-col">
|
|
<label for="organization" class="pt-2 text-base font-bold text-stone-100"
|
|
>Organization
|
|
<Explainer
|
|
explanation={"Fill it if you would like to use an organization's as your Git Source. Otherwise your user will be used."}
|
|
/></label
|
|
>
|
|
</div>
|
|
<input
|
|
name="organization"
|
|
id="organization"
|
|
placeholder="eg: coollabsio"
|
|
bind:value={source.organization}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{:else if source.githubApp?.installationId}
|
|
<form on:submit|preventDefault={handleSubmit} class="py-4">
|
|
<div class="flex md:flex-row space-y-2 md:space-y-0 space-x-0 md:space-x-2 flex-col pb-5">
|
|
<div class="title">{$t('general')}</div>
|
|
|
|
{#if $appSession.isAdmin}
|
|
<button class="btn btn-sm bg-sources" type="submit" disabled={loading}
|
|
>{loading ? 'Saving...' : 'Save'}</button
|
|
>
|
|
<a
|
|
class="btn btn-sm"
|
|
href={`${source.htmlUrl}/${
|
|
source.htmlUrl === 'https://github.com' ? 'apps' : 'github-apps'
|
|
}/${source.githubApp.name}/installations/new`}
|
|
>{$t('source.change_app_settings', { name: 'GitHub' })}</a
|
|
>
|
|
{/if}
|
|
</div>
|
|
<div class="grid grid-flow-row gap-2 px-10">
|
|
<div class="grid grid-flow-row gap-2">
|
|
<div class="mt-2 grid lg:grid-cols-2 items-center">
|
|
<label for="name" class="text-base font-bold text-stone-100">{$t('forms.name')}</label>
|
|
<input name="name" id="name" required bind:value={source.name} />
|
|
</div>
|
|
</div>
|
|
<div class="grid lg:grid-cols-2 items-center">
|
|
<label for="htmlUrl" class="text-base font-bold text-stone-100">HTML URL</label>
|
|
<input
|
|
name="htmlUrl"
|
|
id="htmlUrl"
|
|
disabled={source.githubAppId}
|
|
readonly={source.githubAppId}
|
|
required
|
|
bind:value={source.htmlUrl}
|
|
/>
|
|
</div>
|
|
<div class="grid lg:grid-cols-2 items-center">
|
|
<label for="apiUrl" class="text-base font-bold text-stone-100">API URL</label>
|
|
<input
|
|
name="apiUrl"
|
|
id="apiUrl"
|
|
required
|
|
disabled={source.githubAppId}
|
|
readonly={source.githubAppId}
|
|
bind:value={source.apiUrl}
|
|
/>
|
|
</div>
|
|
{#if selfHosted}
|
|
<div class="grid lg:grid-cols-2 items-center">
|
|
<label for="customPort" class="text-base font-bold text-stone-100"
|
|
>Custom SSH Port <Explainer
|
|
explanation="If you use a self-hosted version of Git, you can provide custom port for all the Git related actions."
|
|
/></label
|
|
>
|
|
<input
|
|
name="customPort"
|
|
id="customPort"
|
|
disabled={!selfHosted}
|
|
readonly={!selfHosted}
|
|
required
|
|
value={source.customPort}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
<div class="grid lg:grid-cols-2">
|
|
<div class="flex flex-col">
|
|
<label for="organization" class="pt-2 text-base font-bold text-stone-100"
|
|
>Organization</label
|
|
>
|
|
</div>
|
|
<input
|
|
readonly
|
|
disabled
|
|
name="organization"
|
|
id="organization"
|
|
placeholder="eg: coollabsio"
|
|
bind:value={source.organization}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{:else}
|
|
<div class="text-center">
|
|
<a
|
|
href={`${source.htmlUrl}/${
|
|
source.htmlUrl === 'https://github.com' ? 'apps' : 'github-apps'
|
|
}/${source.githubApp.name}/installations/new`}
|
|
>
|
|
<button class="box-selection bg-sources text-xl font-bold">Install Repositories</button></a
|
|
>
|
|
</div>
|
|
{/if}
|
|
</div>
|