feat: 申请证书支持直接从网站选取域名 (#3105)

pull/3102/head^2
zhengkunwang 2023-11-29 20:24:08 +08:00 committed by GitHub
parent 120bec57b2
commit 4ed131cde7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 82 additions and 6 deletions

View File

@ -95,7 +95,7 @@ func (w *WebsiteRepo) Page(page, size int, opts ...DBOption) (int64, []model.Web
func (w *WebsiteRepo) List(opts ...DBOption) ([]model.Website, error) {
var websites []model.Website
err := getDb(opts...).Model(&model.Website{}).Preload("WebsiteSSL").Find(&websites).Error
err := getDb(opts...).Model(&model.Website{}).Preload("Domains").Preload("WebsiteSSL").Find(&websites).Error
return websites, err
}

View File

@ -260,6 +260,25 @@ func (w WebsiteSSLService) ObtainSSL(apply request.WebsiteSSLApply) error {
if err != nil {
return
}
websites, _ := websiteRepo.GetBy(websiteRepo.WithWebsiteSSLID(websiteSSL.ID))
if len(websites) > 0 {
for _, website := range websites {
legoLogger.Logger.Println(i18n.GetMsgWithMap("ApplyWebSiteSSLLog", map[string]interface{}{"name": website.PrimaryDomain}))
if err := createPemFile(website, *websiteSSL); err != nil {
legoLogger.Logger.Println(i18n.GetMsgWithMap("ErrUpdateWebsiteSSL", map[string]interface{}{"name": website.PrimaryDomain, "err": err.Error()}))
}
}
nginxInstall, err := getAppInstallByKey(constant.AppOpenresty)
if err != nil {
return
}
if err := opNginx(nginxInstall.ContainerName, constant.NginxReload); err != nil {
legoLogger.Logger.Println(i18n.GetMsgByKey(constant.ErrSSLApply))
return
}
legoLogger.Logger.Println(i18n.GetMsgByKey("ApplyWebSiteSSLSuccess"))
}
}()
return nil

View File

@ -105,6 +105,10 @@ DNSAccountName: 'DNS account [{{ .name }}] manufacturer [{{.type}}]'
PushDirLog: 'Certificate pushed to directory [{{ .path }}] {{ .status }}'
ErrDeleteCAWithSSL: "There is an issued certificate under the current organization and cannot be deleted"
ErrDeleteWithPanelSSL: "Panel SSL configuration uses this certificate and cannot be deleted"
ErrDefaultCA: "The default organization cannot be deleted"
ApplyWebSiteSSLLog: "Start updating {{ .name }} website certificate"
ErrUpdateWebsiteSSL: "{{ .name }} website failed to update certificate: {{ .err }}"
ApplyWebSiteSSLSuccess: "Update website certificate successfully"
#mysql
ErrUserIsExist: "The current user already exists. Please enter a new user"

View File

@ -105,6 +105,10 @@ DNSAccountName: 'DNS 帳號 [{{ .name }}] 廠商 [{{.type}}]'
PushDirLog: '憑證推送到目錄 [{{ .path }}] {{ .status }}'
ErrDeleteCAWithSSL: "目前機構下存在已簽發證書,無法刪除"
ErrDeleteWithPanelSSL: "面板 SSL 配置使用此證書,無法刪除"
ErrDefaultCA: "默認機構不能刪除"
ApplyWebSiteSSLLog: "開始更新 {{ .name }} 網站憑證"
ErrUpdateWebsiteSSL: "{{ .name }} 網站更新憑證失敗: {{ .err }}"
ApplyWebSiteSSLSuccess: "更新網站憑證成功"
#mysql

View File

@ -105,6 +105,10 @@ DNSAccountName: 'DNS 账号 [{{ .name }}] 厂商 [{{.type}}]'
PushDirLog: '证书推送到目录 [{{ .path }}] {{ .status }}'
ErrDeleteCAWithSSL: "当前机构下存在已签发证书,无法删除"
ErrDeleteWithPanelSSL: "面板 SSL 配置使用此证书,无法删除"
ErrDefaultCA: "默认机构不能删除"
ApplyWebSiteSSLLog: "开始更新 {{ .name }} 网站证书"
ErrUpdateWebsiteSSL: "{{ .name }} 网站更新证书失败: {{ .err }}"
ApplyWebSiteSSLSuccess: "更新网站证书成功"
#mysql
ErrUserIsExist: "当前用户已存在,请重新输入"

View File

@ -1852,6 +1852,7 @@ const message = {
pushDirHelper:
'Two files will be generated in this directory, the certificate file: fullchain.pem and the key file: privkey.pem',
organizationDetail: 'Organization Details',
fromWebsite: 'From Websites',
},
firewall: {
create: 'Create rule',

View File

@ -1738,6 +1738,7 @@ const message = {
dir: '',
pushDirHelper: 'fullchain.pem privkey.pem',
organizationDetail: '',
fromWebsite: '',
},
firewall: {
create: '',

View File

@ -1738,6 +1738,7 @@ const message = {
dir: '',
pushDirHelper: 'fullchain.pem privkey.pem',
organizationDetail: '',
fromWebsite: '',
},
firewall: {
create: '',

View File

@ -14,7 +14,7 @@
type="textarea"
:autosize="{ minRows: 4, maxRows: 10 }"
v-model="obtain.domains"
:placeholder="$t('website.domainHelper')"
:placeholder="$t('ssl.domainHelper')"
></el-input>
</el-form-item>
<el-form-item :label="$t('website.keyType')" prop="keyType">

View File

@ -6,9 +6,25 @@
<el-row v-loading="loading">
<el-col :span="22" :offset="1">
<el-form ref="sslForm" label-position="top" :model="ssl" label-width="100px" :rules="rules">
<el-form-item :label="$t('website.primaryDomain')" prop="primaryDomain">
<el-input v-model.trim="ssl.primaryDomain"></el-input>
</el-form-item>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item :label="$t('website.primaryDomain')" prop="primaryDomain">
<el-input v-model.trim="ssl.primaryDomain"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('ssl.fromWebsite')">
<el-select v-model="websiteID" @change="changeWebsite">
<el-option
v-for="(site, key) in websites"
:key="key"
:value="site.id"
:label="site.primaryDomain"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-form-item :label="$t('website.otherDomains')" prop="otherDomains">
<el-input
type="textarea"
@ -104,7 +120,7 @@
<script lang="ts" setup>
import DrawerHeader from '@/components/drawer-header/index.vue';
import { Website } from '@/api/interface/website';
import { CreateSSL, SearchAcmeAccount, SearchDnsAccount } from '@/api/modules/website';
import { CreateSSL, ListWebsites, SearchAcmeAccount, SearchDnsAccount } from '@/api/modules/website';
import { Rules } from '@/global/form-rules';
import i18n from '@/lang';
import { FormInstance } from 'element-plus';
@ -136,6 +152,7 @@ const acmeReq = reactive({
const dnsAccounts = ref<Website.DnsAccount[]>();
const acmeAccounts = ref<Website.AcmeAccount[]>();
const sslForm = ref<FormInstance>();
const websites = ref();
const rules = ref({
primaryDomain: [Rules.requiredInput, Rules.domain],
acmeAccountId: [Rules.requiredSelectBusiness],
@ -145,6 +162,7 @@ const rules = ref({
keyType: [Rules.requiredInput],
dir: [Rules.requiredInput],
});
const websiteID = ref();
const initData = () => ({
primaryDomain: '',
@ -173,6 +191,7 @@ const resetForm = () => {
sslForm.value?.resetFields();
dnsResolve.value = [];
ssl.value = initData();
websiteID.value = undefined;
};
const acceptParams = () => {
@ -180,6 +199,7 @@ const acceptParams = () => {
ssl.value.websiteId = Number(id.value);
getAcmeAccounts();
getDnsAccounts();
listwebsites();
open.value = true;
};
@ -207,6 +227,28 @@ const changeProvider = () => {
dnsResolve.value = [];
};
const listwebsites = async () => {
const res = await ListWebsites();
websites.value = res.data;
};
const changeWebsite = () => {
if (websiteID.value > 0) {
const selectedWebsite = websites.value.find((website) => website.id == websiteID.value);
if (selectedWebsite && selectedWebsite.domains && selectedWebsite.domains.length > 0) {
const primaryDomain = selectedWebsite.domains[0].domain;
const otherDomains = selectedWebsite.domains
.slice(1)
.map((domain) => domain.domain)
.join('\n');
ssl.value.primaryDomain = primaryDomain;
ssl.value.otherDomains = otherDomains;
}
}
};
const submit = async (formEl: FormInstance | undefined) => {
if (!formEl) return;
await formEl.validate((valid) => {