Merge branch 'main' into main

This commit is contained in:
SlycC
2024-01-08 19:56:50 +03:00
committed by GitHub
12 changed files with 68 additions and 38 deletions
-26
View File
@@ -1,26 +0,0 @@
name: Helper
on:
pull_request:
types:
- closed
jobs:
instructions:
name: instructions
runs-on: ubuntu-latest
steps:
- run: curl https://notify-api.is-a.dev/pr/merged/${{ github.event.pull_request.number }}
if: github.event.action == 'closed' && github.event.pull_request.merged == true
# - uses: actions/checkout@v2
# - name: Comment
# if: github.event.action == 'closed' && github.event.pull_request.merged == true
# uses: actions/github-script@v3
# with:
# github-token: ${{secrets.GITHUB_TOKEN}}
# script: |
# const { hasLabel } = require(`${process.env.GITHUB_WORKSPACE}/scripts/action-utils.js`);
# const { instructions } = require(`${process.env.GITHUB_WORKSPACE}/scripts/reply.js`);
# if (hasLabel(context, 'domain'))
# console.log('Domain');
# await instructions(context, github);
+1 -3
View File
@@ -6,8 +6,6 @@
"email": "phenax5@gmail.com"
},
"record": {
"URL": "http://www.is-a.dev",
"MX": ["mail.is-a.dev"],
"TXT": ["v=spf1 ip4:51.161.54.164 include:mail.is-a.dev ~all"]
"URL": "http://www.is-a.dev"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "jirafey",
"email": "jirafey@tuta.io"
},
"record": {
"TXT": "dh=3c80d94ed181b223255b5fbf35f8fda6a402058f"
}
}
@@ -5,6 +5,6 @@
},
"record": {
"CNAME": "dns.beadman-network.com"
"TXT": "2c9dfbe7c8"
}
}
@@ -0,0 +1,10 @@
{
"owner": {
"username": "is-a-dev",
"email": "phenax5@gmail.com"
},
"record": {
"TXT": "c551c059fb167540ec0498d9011556"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "alijafari-gd",
"email": "ali.jafari.sn@gmail.com"
},
"record": {
"URL": "https://alijafari.is-a.dev"
}
}
+14
View File
@@ -0,0 +1,14 @@
{
"owner": {
"username": "alijafari-gd",
"email": "ali.jafari.sn@gmail.com"
},
"record": {
"A": [
"217.174.245.249",
"51.161.54.161"
],
"MX": ["mail.is-a.dev"],
"TXT": "v=spf1 mx a:mail.is-a.dev ~all"
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "DarindaDraX",
"email": "123kishanvish@gmail.com"
},
"record": {
"A": ["69.30.249.53"]
}
}
+9
View File
@@ -0,0 +1,9 @@
{
"owner": {
"username": "vuthanhtrung2010",
"email": "vuthanhtrungsuper@gmail.com"
},
"record": {
"A": ["69.30.249.53"]
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"owner": {
"username": "Nikhil",
"username": "nikxso",
"email": "nikhilsoniya123@gmail.com",
"discord": "nikxso#0000"
},
+1 -1
View File
@@ -6,6 +6,6 @@
"email": "pandeysiddhant21@gmail.com"
},
"record": {
"URL": "https://siddhantt.netlify.app"
"URL": "https://siddhantt.vercel.app/"
}
}
+4 -6
View File
@@ -59,6 +59,9 @@ const recordToEmailMx = ({ name, address, priority }) => ({
const getHostKey = host =>
`${host.name.toLowerCase()}##${host.type.toLowerCase()}##${host.address.toLowerCase()}`;
const isReserved = (domain) =>
domain.name.startsWith('*') || !VALID_RECORD_TYPES.includes(domain.type)
const diffRecords = (oldRecords, newRecords) => {
const isMatchingRecord = (a, b) => getHostKey(a) === getHostKey(b);
@@ -84,13 +87,9 @@ const executeBatch = (batches) => batches.reduce((promise, batch, index) => {
});
}, Promise.resolve());
const isReserved = (domain) =>
domain.name.startsWith('*') ||
!VALID_RECORD_TYPES.includes(domain.type)
const getDomainService = ({ cpanel }) => {
const fetchZoneRecords = R.compose(
then(R.filter(R.complement(isReserved))),
then(R.reject(isReserved)),
then(R.map(zoneToRecord)),
cpanel.zone.fetch
);
@@ -134,7 +133,6 @@ const getDomainService = ({ cpanel }) => {
batchLazyTasks(BATCH_SIZE),
R.filter(Boolean),
R.map(R.cond([
// [R.propEq('name', 'www'), R.always(null)], // Ignore www
[R.propEq('type', 'URL'), addRedirection],
[R.T, addZoneRecord],
])),