mirror of
https://github.com/google/nomulus
synced 2026-02-04 12:02:30 +00:00
These were a few straggling special cases to deal with Registry 1.0 data; that data was removed ages ago and I just never got around to cleaning these up. This removes them at long last. There were also some TODOs for the same bug around better TLD extraction that supports multi-part TLDs (though that's pretty unrelated to Registry 1.0/2.0), so I fixed those since it turns out supporting multi-part TLDs is trivial. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=151003181
44 lines
1.8 KiB
SQL
44 lines
1.8 KiB
SQL
-- Copyright 2017 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.
|
|
|
|
-- Registry Data View SQL
|
|
--
|
|
-- This query lists registry fields necessary for billing.
|
|
--
|
|
-- TODO(b/20764952): extend this view to support timed transition properties.
|
|
-- TODO(b/18092292): add a column for whether the TLD is "billable" or not.
|
|
SELECT
|
|
tldStr AS tld,
|
|
tldType AS type,
|
|
-- This relies on the fact that we currently haven't ever used more than one
|
|
-- value with renewBillingCostTransitions.
|
|
-- TODO(b/20764952): fix this limitation.
|
|
FIRST(renewBillingCostTransitions.billingCost) WITHIN RECORD
|
|
AS renewBillingCost,
|
|
-- Grace period lengths are stored in the ISO 8601 duration format as a
|
|
-- duration in seconds, which produces a string of the form "PT####S".
|
|
INTEGER(REGEXP_EXTRACT(autoRenewGracePeriodLength, r'PT(.+)S'))
|
|
AS autorenewGracePeriodSeconds,
|
|
premiumList.path AS premiumListPath,
|
|
-- TODO(b/18265521): remove this column once the referenced bug is fixed;
|
|
-- this column is only included because without it BigQuery will complain
|
|
-- that we aren't consuming reservedLists (due to it having a repeated .path
|
|
-- child field, which overlaps with premiumList.path above).
|
|
GROUP_CONCAT_UNQUOTED(reservedLists.path, "/") WITHIN RECORD
|
|
AS reservedListPaths,
|
|
FROM
|
|
[%SOURCE_DATASET%.Registry]
|
|
ORDER BY
|
|
tld
|