-
Notifications
You must be signed in to change notification settings - Fork 94
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
ref(filters): Access fields through trait #3397
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
efe4514
ref: trait
jjbayer c29883c
ref: Trait impl
jjbayer 5eede65
ref: imports
jjbayer c5979ff
ref: doc
jjbayer 8159767
fix: doc link
jjbayer d0f195d
pub -> private
jjbayer 082a420
Update relay-filter/src/interface.rs
jjbayer 6cdea4b
inline
jjbayer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
//! This module contains the trait for items that can be filtered by Inbound Filters, plus | ||
//! the implementation for [`Event`]. | ||
|
||
use relay_event_schema::protocol::{Csp, Event, EventType, Exception, LogEntry, Values}; | ||
use url::Url; | ||
|
||
/// A data item to which filters can be applied. | ||
pub trait Filterable { | ||
/// The CSP report contained in the item. Only for CSP reports. | ||
fn csp(&self) -> Option<&Csp>; | ||
|
||
/// The exception values of the item. Only for error events. | ||
fn exceptions(&self) -> Option<&Values<Exception>>; | ||
|
||
/// The IP address of the client that sent the data. | ||
fn ip_addr(&self) -> Option<&str>; | ||
|
||
/// The logentry message. Only for error events. | ||
fn logentry(&self) -> Option<&LogEntry>; | ||
|
||
/// The release string of the data item. | ||
fn release(&self) -> Option<&str>; | ||
|
||
/// The transaction name. Only for transaction events. | ||
fn transaction(&self) -> Option<&str>; | ||
|
||
/// The URL from which the data originates. Used for localhost filtering. | ||
jjbayer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
fn url(&self) -> Option<Url>; | ||
|
||
/// The user agent of the client that sent the data. | ||
fn user_agent(&self) -> Option<&str>; | ||
} | ||
|
||
impl Filterable for Event { | ||
fn csp(&self) -> Option<&Csp> { | ||
if self.ty.value() != Some(&EventType::Csp) { | ||
return None; | ||
} | ||
self.csp.value() | ||
} | ||
|
||
fn exceptions(&self) -> Option<&Values<Exception>> { | ||
self.exceptions.value() | ||
} | ||
|
||
fn ip_addr(&self) -> Option<&str> { | ||
let user = self.user.value()?; | ||
Some(user.ip_address.value()?.as_ref()) | ||
iker-barriocanal marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
fn logentry(&self) -> Option<&LogEntry> { | ||
self.logentry.value() | ||
} | ||
|
||
fn release(&self) -> Option<&str> { | ||
self.release.as_str() | ||
} | ||
|
||
fn transaction(&self) -> Option<&str> { | ||
if self.ty.value() != Some(&EventType::Transaction) { | ||
return None; | ||
} | ||
self.transaction.as_str() | ||
} | ||
|
||
fn url(&self) -> Option<Url> { | ||
let url_str = self.request.value()?.url.value()?; | ||
Url::parse(url_str).ok() | ||
} | ||
|
||
fn user_agent(&self) -> Option<&str> { | ||
self.user_agent() | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm open for ideas on how to name this trait.