mirror of
https://github.com/google/nomulus.git
synced 2025-05-07 15:28:22 +02:00
The Registrar object's @ID is on its clientId field, so that's what we're actually using here, not the name. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=241936005
49 lines
1.8 KiB
SQL
49 lines
1.8 KiB
SQL
#standardSQL
|
|
-- Copyright 2018 The Nomulus Authors. All Rights Reserved.
|
|
--
|
|
-- Licensed under the Apache License, Version 2.0 (the "License");
|
|
-- you may not use this file except in compliance with the License.
|
|
-- You may obtain a copy of the License at
|
|
--
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
--
|
|
-- Unless required by applicable law or agreed to in writing, software
|
|
-- distributed under the License is distributed on an "AS IS" BASIS,
|
|
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
-- See the License for the specific language governing permissions and
|
|
-- limitations under the License.
|
|
|
|
-- This query gathers all Subdomains active within a given yearMonth
|
|
-- and emits a row containing its fully qualified domain name
|
|
-- [SLD].[TLD], the current registrar's name, and the current registrar's
|
|
-- email address.
|
|
|
|
SELECT
|
|
domain.fullyQualifiedDomainName AS fullyQualifiedDomainName,
|
|
registrar.clientId AS registrarClientId,
|
|
COALESCE(registrar.emailAddress, '') AS registrarEmailAddress
|
|
FROM ( (
|
|
SELECT
|
|
fullyQualifiedDomainName,
|
|
currentSponsorClientId,
|
|
creationTime
|
|
FROM
|
|
`%PROJECT_ID%.%DATASTORE_EXPORT_DATASET%.%DOMAIN_BASE_TABLE%`
|
|
WHERE
|
|
-- Only include active registrations
|
|
-- Registrations that are active (not deleted) will have null deletionTime
|
|
-- because END_OF_TIME is an invalid timestamp in standardSQL
|
|
(SAFE_CAST(deletionTime AS STRING) IS NULL
|
|
OR deletionTime > CURRENT_TIMESTAMP)) AS domain
|
|
JOIN (
|
|
SELECT
|
|
__key__.name AS clientId,
|
|
emailAddress
|
|
FROM
|
|
`%PROJECT_ID%.%DATASTORE_EXPORT_DATASET%.%REGISTRAR_TABLE%`
|
|
WHERE
|
|
type = 'REAL') AS registrar
|
|
ON
|
|
domain.currentSponsorClientId = registrar.clientId)
|
|
ORDER BY
|
|
creationTime DESC
|