Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leon/tapir issue 18/modern terminology #22

Merged
merged 2 commits into from
Jan 14, 2025

Conversation

zluudg
Copy link
Contributor

@zluudg zluudg commented Jan 8, 2025

I ended up replacing "grey" with "doubt"

Fix #18

Summary by CodeRabbit

Release Notes

  • Terminology Update

    • Renamed "whitelist" to "allowlist"
    • Renamed "blacklist" to "denylist"
    • Renamed "greylist" to "doubtlist"
  • Command Updates

    • Updated debug, filter, MQTT, and RPZ commands to reflect new list terminology
    • Modified command descriptions and error messages accordingly
  • Structural Changes

    • Updated structs and data structures to use new list naming conventions
    • Consistent terminology across multiple files and components

@zluudg zluudg requested a review from a team as a code owner January 8, 2025 10:00
Copy link

coderabbitai bot commented Jan 8, 2025

Walkthrough

The pull request introduces a comprehensive terminology update across multiple files, replacing words like "whitelist", "blacklist", and "greylist" with "allowlist", "denylist", and "doubtlist", respectively. The changes span several Go files, including bitmask.go, cmd/debug.go, cmd/filterlists.go, cmd/mqtt.go, cmd/rpz.go, and structs.go. The modifications primarily involve renaming constants, variables, command descriptions, error messages, and struct fields to reflect a more inclusive and precise language.

Changes

File Changes
bitmask.go - Renamed constant WHITELIST to ALLOWLIST
- Updated ActionToCNAMETarget and ActionToString maps
cmd/debug.go - Renamed debugGreylistStatusCmd to debugDoubtlistStatusCmd
- Renamed debugImportGreylistCmd to debugImportDoubtlistCmd
- Updated command descriptions and outputs
cmd/filterlists.go - Renamed ColourlistsCmd to FilterlistsCmd
- Updated command description and output formatting
cmd/mqtt.go - Renamed mqttgreylist to mqttdoubtlist
- Updated MQTT command descriptions and messages
cmd/rpz.go - Updated error messages and flag descriptions
- Modified RPZ list type terminology
structs.go - Renamed struct fields in DebugResponse, TapirMsg, and WBGlist
- Updated comments to reflect new terminology

Poem

🐰 In the realm of code, a change takes flight,
From white and grey to allow and doubt's might.
Lists renamed with inclusive grace,
A linguistic dance, a semantic embrace.
Coding rabbits hop with linguistic flair! 🌈


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (2)
cmd/debug.go (1)

329-329: Use time.Since instead of time.Now().Sub.

Replace time.Now().Sub with time.Since for better readability and idiomatic Go.

Apply this diff:

-				ttl := n.TTL - time.Now().Sub(n.TimeAdded).Round(time.Second)
+				ttl := n.TTL - time.Since(n.TimeAdded).Round(time.Second)
🧰 Tools
🪛 golangci-lint (1.62.2)

329-329: S1012: should use time.Since instead of time.Now().Sub

(gosimple)

structs.go (1)

351-352: Consider updating the comment format.

While the terminology update is correct, the comment format could be improved.

Apply this diff to improve the comment format:

-	// doubtlist sources needs more complex stuff here:
-	//	DoubtNames   map[string]DoubtName
+	// Doubtlist sources need more complex configuration:
+	// DoubtNames map[string]DoubtName
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between c7b98f0 and 6b7f7c1.

📒 Files selected for processing (6)
  • bitmask.go (3 hunks)
  • cmd/debug.go (9 hunks)
  • cmd/filterlists.go (1 hunks)
  • cmd/mqtt.go (8 hunks)
  • cmd/rpz.go (2 hunks)
  • structs.go (5 hunks)
🧰 Additional context used
🪛 golangci-lint (1.62.2)
cmd/debug.go

69-69: printf: fmt.Printf format %d has arg resp.DenylistedNames of wrong type map[string]bool

(govet)


70-70: printf: fmt.Printf format %d has arg resp.DoubtlistedNames of wrong type map[string]*github.com/dnstapir/tapir.TapirName

(govet)


329-329: S1012: should use time.Since instead of time.Now().Sub

(gosimple)

cmd/mqtt.go

36-36: var defaulttopic is unused

(unused)

🔇 Additional comments (10)
cmd/filterlists.go (1)

12-14: LGTM! Command renamed appropriately.

The command has been correctly renamed from ColourlistsCmd to FilterlistsCmd with updated terminology in the description.

bitmask.go (1)

99-99: LGTM! Consistent terminology updates.

The changes correctly update the terminology:

  • Renamed constant from WHITELIST to ALLOWLIST
  • Updated StringToAction function to handle "allowlist"
  • Updated maps with new terminology

Also applies to: 108-109, 128-128, 136-136

cmd/rpz.go (1)

38-38: LGTM! Error messages and flag descriptions updated.

The error messages and flag descriptions have been consistently updated with the new terminology.

Also applies to: 134-134

cmd/debug.go (1)

58-58: LGTM! Consistent terminology updates.

All command names, descriptions, and messages have been updated to use the new terminology consistently.

Also applies to: 103-120, 204-206, 272-274, 277-282, 300-304, 321-323, 335-336, 341-341, 356-356, 362-362

structs.go (2)

243-243: LGTM! Consistent terminology update.

The field descriptions in both TapirMsg and WBGlist structs have been updated to use the new terminology consistently.

Also applies to: 341-341


151-155: Verify consistent usage of renamed fields.

The field renames align with the new terminology. However, we should verify that all references to these fields are updated consistently across the codebase.

✅ Verification successful

Field renames are consistently applied across the codebase

The verification confirms that all references to these fields use the new terminology ("allowlist", "denylist", "doubtlist") consistently. No instances of the old terminology were found, and the new field names are properly used throughout the codebase.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Search for any remaining references to the old field names.
# This helps ensure we haven't missed any usage of the old terminology.

echo "Searching for old field references..."
rg -i "whitelist|blacklist|greylist" --type go

Length of output: 133


Script:

#!/bin/bash
# Search for new terminology usage
echo "=== Searching for new terminology ==="
rg -i "allowlist|denylist|doubtlist" --type go

echo -e "\n=== Checking struct field access ==="
# Look for struct field access patterns
ast-grep --pattern 'struct {
  $$$
  Allowlists $$$
  Denylists $$$
  Doubtlists $$$
  DenylistedNames $$$
  DoubtlistedNames $$$
  $$$
}'

Length of output: 5369

cmd/mqtt.go (4)

443-443: LGTM! Consistent terminology update.

The ListType field is consistently set to "doubtlist" in both instances.

Also applies to: 546-546


742-742: LGTM! Command description and error handling updated.

The command description and error handling have been updated to use the new terminology consistently.

Also applies to: 752-752, 760-760


835-835: LGTM! API request handling updated.

The API request handling has been updated to use the new terminology consistently in both the request and error messages.

Also applies to: 845-845, 852-852, 856-856


780-780: LGTM! Flag description updated.

The flag description and error message have been updated to use the new terminology consistently.

Also applies to: 788-788

Copy link
Member

@oej oej left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work. Thanks.

@oej oej merged commit 18cc0cd into dnstapir:main Jan 14, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Modernize terminology for domain lists
2 participants