From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 0EA766A003 for ; Fri, 12 Mar 2021 16:25:00 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id D0A293479E for ; Fri, 12 Mar 2021 16:24:29 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 74AF534731 for ; Fri, 12 Mar 2021 16:24:27 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 3C77C463F9 for ; Fri, 12 Mar 2021 16:24:27 +0100 (CET) From: Wolfgang Bumiller To: pmg-devel@lists.proxmox.com Date: Fri, 12 Mar 2021 16:24:09 +0100 Message-Id: <20210312152421.30114-21-w.bumiller@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210312152421.30114-1-w.bumiller@proxmox.com> References: <20210312152421.30114-1-w.bumiller@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.036 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pmg-devel] [PATCH v2 widget-toolkit 2/7] add ACME related data models X-BeenThere: pmg-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Mail Gateway development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Mar 2021 15:25:00 -0000 Signed-off-by: Wolfgang Bumiller --- Changes since v1: * removed commented-out urls src/Makefile | 2 ++ src/data/model/ACME.js | 27 +++++++++++++++++++++++++++ src/data/model/Certificates.js | 6 ++++++ 3 files changed, 35 insertions(+) create mode 100644 src/data/model/ACME.js create mode 100644 src/data/model/Certificates.js diff --git a/src/Makefile b/src/Makefile index 46b90ae..3861bfc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -15,6 +15,8 @@ JSSRC= \ data/RRDStore.js \ data/TimezoneStore.js \ data/model/Realm.js \ + data/model/Certificates.js \ + data/model/ACME.js \ form/DisplayEdit.js \ form/ExpireDate.js \ form/IntegerField.js \ diff --git a/src/data/model/ACME.js b/src/data/model/ACME.js new file mode 100644 index 0000000..4a82355 --- /dev/null +++ b/src/data/model/ACME.js @@ -0,0 +1,27 @@ +Ext.define('proxmox-acme-accounts', { + extend: 'Ext.data.Model', + fields: ['name'], + proxy: { + type: 'proxmox', + }, + idProperty: 'name', +}); + +Ext.define('proxmox-acme-challenges', { + extend: 'Ext.data.Model', + fields: ['id', 'type', 'schema'], + proxy: { + type: 'proxmox', + }, + idProperty: 'id', +}); + + +Ext.define('proxmox-acme-plugins', { + extend: 'Ext.data.Model', + fields: ['type', 'plugin', 'api'], + proxy: { + type: 'proxmox', + }, + idProperty: 'plugin', +}); diff --git a/src/data/model/Certificates.js b/src/data/model/Certificates.js new file mode 100644 index 0000000..f3e2a7f --- /dev/null +++ b/src/data/model/Certificates.js @@ -0,0 +1,6 @@ +Ext.define('proxmox-certificate', { + extend: 'Ext.data.Model', + + fields: ['filename', 'fingerprint', 'issuer', 'notafter', 'notbefore', 'subject', 'san', 'public-key-bits', 'public-key-type'], + idProperty: 'filename', +}); -- 2.20.1