mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-15 02:51:25 +00:00
*: Format with rustfmt (#2188)
Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
This commit is contained in:
@ -20,9 +20,9 @@
|
||||
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
use quote::quote;
|
||||
use proc_macro::TokenStream;
|
||||
use syn::{parse_macro_input, DeriveInput, Data, DataStruct, Ident};
|
||||
use quote::quote;
|
||||
use syn::{parse_macro_input, Data, DataStruct, DeriveInput, Ident};
|
||||
|
||||
/// Generates a delegating `NetworkBehaviour` implementation for the struct this is used for. See
|
||||
/// the trait documentation for better description.
|
||||
@ -45,27 +45,27 @@ fn build(ast: &DeriveInput) -> TokenStream {
|
||||
fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
let name = &ast.ident;
|
||||
let (_, ty_generics, where_clause) = ast.generics.split_for_impl();
|
||||
let multiaddr = quote!{::libp2p::core::Multiaddr};
|
||||
let trait_to_impl = quote!{::libp2p::swarm::NetworkBehaviour};
|
||||
let net_behv_event_proc = quote!{::libp2p::swarm::NetworkBehaviourEventProcess};
|
||||
let either_ident = quote!{::libp2p::core::either::EitherOutput};
|
||||
let network_behaviour_action = quote!{::libp2p::swarm::NetworkBehaviourAction};
|
||||
let into_protocols_handler = quote!{::libp2p::swarm::IntoProtocolsHandler};
|
||||
let protocols_handler = quote!{::libp2p::swarm::ProtocolsHandler};
|
||||
let into_proto_select_ident = quote!{::libp2p::swarm::IntoProtocolsHandlerSelect};
|
||||
let peer_id = quote!{::libp2p::core::PeerId};
|
||||
let connection_id = quote!{::libp2p::core::connection::ConnectionId};
|
||||
let connected_point = quote!{::libp2p::core::ConnectedPoint};
|
||||
let listener_id = quote!{::libp2p::core::connection::ListenerId};
|
||||
let multiaddr = quote! {::libp2p::core::Multiaddr};
|
||||
let trait_to_impl = quote! {::libp2p::swarm::NetworkBehaviour};
|
||||
let net_behv_event_proc = quote! {::libp2p::swarm::NetworkBehaviourEventProcess};
|
||||
let either_ident = quote! {::libp2p::core::either::EitherOutput};
|
||||
let network_behaviour_action = quote! {::libp2p::swarm::NetworkBehaviourAction};
|
||||
let into_protocols_handler = quote! {::libp2p::swarm::IntoProtocolsHandler};
|
||||
let protocols_handler = quote! {::libp2p::swarm::ProtocolsHandler};
|
||||
let into_proto_select_ident = quote! {::libp2p::swarm::IntoProtocolsHandlerSelect};
|
||||
let peer_id = quote! {::libp2p::core::PeerId};
|
||||
let connection_id = quote! {::libp2p::core::connection::ConnectionId};
|
||||
let connected_point = quote! {::libp2p::core::ConnectedPoint};
|
||||
let listener_id = quote! {::libp2p::core::connection::ListenerId};
|
||||
|
||||
let poll_parameters = quote!{::libp2p::swarm::PollParameters};
|
||||
let poll_parameters = quote! {::libp2p::swarm::PollParameters};
|
||||
|
||||
// Build the generics.
|
||||
let impl_generics = {
|
||||
let tp = ast.generics.type_params();
|
||||
let lf = ast.generics.lifetimes();
|
||||
let cst = ast.generics.const_params();
|
||||
quote!{<#(#lf,)* #(#tp,)* #(#cst,)*>}
|
||||
quote! {<#(#lf,)* #(#tp,)* #(#cst,)*>}
|
||||
};
|
||||
|
||||
// Whether or not we require the `NetworkBehaviourEventProcess` trait to be implemented.
|
||||
@ -75,12 +75,14 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
for meta_items in ast.attrs.iter().filter_map(get_meta_items) {
|
||||
for meta_item in meta_items {
|
||||
match meta_item {
|
||||
syn::NestedMeta::Meta(syn::Meta::NameValue(ref m)) if m.path.is_ident("event_process") => {
|
||||
syn::NestedMeta::Meta(syn::Meta::NameValue(ref m))
|
||||
if m.path.is_ident("event_process") =>
|
||||
{
|
||||
if let syn::Lit::Bool(ref b) = m.lit {
|
||||
event_process = b.value
|
||||
}
|
||||
}
|
||||
_ => ()
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -92,17 +94,19 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
// If we find a `#[behaviour(out_event = "Foo")]` attribute on the struct, we set `Foo` as
|
||||
// the out event. Otherwise we use `()`.
|
||||
let out_event = {
|
||||
let mut out = quote!{()};
|
||||
let mut out = quote! {()};
|
||||
for meta_items in ast.attrs.iter().filter_map(get_meta_items) {
|
||||
for meta_item in meta_items {
|
||||
match meta_item {
|
||||
syn::NestedMeta::Meta(syn::Meta::NameValue(ref m)) if m.path.is_ident("out_event") => {
|
||||
syn::NestedMeta::Meta(syn::Meta::NameValue(ref m))
|
||||
if m.path.is_ident("out_event") =>
|
||||
{
|
||||
if let syn::Lit::Str(ref s) = m.lit {
|
||||
let ident: syn::Type = syn::parse_str(&s.value()).unwrap();
|
||||
out = quote!{#ident};
|
||||
out = quote! {#ident};
|
||||
}
|
||||
}
|
||||
_ => ()
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -111,70 +115,84 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
|
||||
// Build the `where ...` clause of the trait implementation.
|
||||
let where_clause = {
|
||||
let additional = data_struct.fields.iter()
|
||||
let additional = data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.filter(|x| !is_ignored(x))
|
||||
.flat_map(|field| {
|
||||
let ty = &field.ty;
|
||||
vec![
|
||||
quote!{#ty: #trait_to_impl},
|
||||
quote! {#ty: #trait_to_impl},
|
||||
if event_process {
|
||||
quote!{Self: #net_behv_event_proc<<#ty as #trait_to_impl>::OutEvent>}
|
||||
quote! {Self: #net_behv_event_proc<<#ty as #trait_to_impl>::OutEvent>}
|
||||
} else {
|
||||
quote!{#out_event: From< <#ty as #trait_to_impl>::OutEvent >}
|
||||
}
|
||||
quote! {#out_event: From< <#ty as #trait_to_impl>::OutEvent >}
|
||||
},
|
||||
]
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
if let Some(where_clause) = where_clause {
|
||||
if where_clause.predicates.trailing_punct() {
|
||||
Some(quote!{#where_clause #(#additional),*})
|
||||
Some(quote! {#where_clause #(#additional),*})
|
||||
} else {
|
||||
Some(quote!{#where_clause, #(#additional),*})
|
||||
Some(quote! {#where_clause, #(#additional),*})
|
||||
}
|
||||
} else {
|
||||
Some(quote!{where #(#additional),*})
|
||||
Some(quote! {where #(#additional),*})
|
||||
}
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `addresses_of_peer()`.
|
||||
let addresses_of_peer_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ out.extend(self.#i.addresses_of_peer(peer_id)); },
|
||||
None => quote!{ out.extend(self.#field_n.addresses_of_peer(peer_id)); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { out.extend(self.#i.addresses_of_peer(peer_id)); },
|
||||
None => quote! { out.extend(self.#field_n.addresses_of_peer(peer_id)); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_connected()`.
|
||||
let inject_connected_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_connected(peer_id); },
|
||||
None => quote!{ self.#field_n.inject_connected(peer_id); },
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_connected(peer_id); },
|
||||
None => quote! { self.#field_n.inject_connected(peer_id); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_disconnected()`.
|
||||
let inject_disconnected_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_disconnected(peer_id); },
|
||||
None => quote!{ self.#field_n.inject_disconnected(peer_id); },
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_disconnected(peer_id); },
|
||||
None => quote! { self.#field_n.inject_disconnected(peer_id); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_connection_established()`.
|
||||
@ -217,8 +235,9 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_addr_reach_failure()`.
|
||||
let inject_addr_reach_failure_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
let inject_addr_reach_failure_stmts =
|
||||
{
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
@ -228,116 +247,148 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
None => quote!{ self.#field_n.inject_addr_reach_failure(peer_id, addr, error); },
|
||||
})
|
||||
})
|
||||
};
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_dial_failure()`.
|
||||
let inject_dial_failure_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_dial_failure(peer_id); },
|
||||
None => quote!{ self.#field_n.inject_dial_failure(peer_id); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_dial_failure(peer_id); },
|
||||
None => quote! { self.#field_n.inject_dial_failure(peer_id); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_new_listener()`.
|
||||
let inject_new_listener_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_new_listener(id); },
|
||||
None => quote!{ self.#field_n.inject_new_listener(id); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_new_listener(id); },
|
||||
None => quote! { self.#field_n.inject_new_listener(id); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_new_listen_addr()`.
|
||||
let inject_new_listen_addr_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_new_listen_addr(id, addr); },
|
||||
None => quote!{ self.#field_n.inject_new_listen_addr(id, addr); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_new_listen_addr(id, addr); },
|
||||
None => quote! { self.#field_n.inject_new_listen_addr(id, addr); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_expired_listen_addr()`.
|
||||
let inject_expired_listen_addr_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_expired_listen_addr(id, addr); },
|
||||
None => quote!{ self.#field_n.inject_expired_listen_addr(id, addr); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_expired_listen_addr(id, addr); },
|
||||
None => quote! { self.#field_n.inject_expired_listen_addr(id, addr); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_new_external_addr()`.
|
||||
let inject_new_external_addr_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_new_external_addr(addr); },
|
||||
None => quote!{ self.#field_n.inject_new_external_addr(addr); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_new_external_addr(addr); },
|
||||
None => quote! { self.#field_n.inject_new_external_addr(addr); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_expired_external_addr()`.
|
||||
let inject_expired_external_addr_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!{ self.#i.inject_expired_external_addr(addr); },
|
||||
None => quote!{ self.#field_n.inject_expired_external_addr(addr); },
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote! { self.#i.inject_expired_external_addr(addr); },
|
||||
None => quote! { self.#field_n.inject_expired_external_addr(addr); },
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_listener_error()`.
|
||||
let inject_listener_error_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!(self.#i.inject_listener_error(id, err);),
|
||||
None => quote!(self.#field_n.inject_listener_error(id, err);)
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!(self.#i.inject_listener_error(id, err);),
|
||||
None => quote!(self.#field_n.inject_listener_error(id, err);),
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of statements to put in the body of `inject_listener_closed()`.
|
||||
let inject_listener_closed_stmts = {
|
||||
data_struct.fields.iter().enumerate().filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!(self.#i.inject_listener_closed(id, reason);),
|
||||
None => quote!(self.#field_n.inject_listener_closed(id, reason);)
|
||||
data_struct
|
||||
.fields
|
||||
.iter()
|
||||
.enumerate()
|
||||
.filter_map(move |(field_n, field)| {
|
||||
if is_ignored(&field) {
|
||||
return None;
|
||||
}
|
||||
Some(match field.ident {
|
||||
Some(ref i) => quote!(self.#i.inject_listener_closed(id, reason);),
|
||||
None => quote!(self.#field_n.inject_listener_closed(id, reason);),
|
||||
})
|
||||
})
|
||||
})
|
||||
};
|
||||
|
||||
// Build the list of variants to put in the body of `inject_event()`.
|
||||
@ -369,13 +420,13 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
continue;
|
||||
}
|
||||
let ty = &field.ty;
|
||||
let field_info = quote!{ <#ty as #trait_to_impl>::ProtocolsHandler };
|
||||
let field_info = quote! { <#ty as #trait_to_impl>::ProtocolsHandler };
|
||||
match ph_ty {
|
||||
Some(ev) => ph_ty = Some(quote!{ #into_proto_select_ident<#ev, #field_info> }),
|
||||
Some(ev) => ph_ty = Some(quote! { #into_proto_select_ident<#ev, #field_info> }),
|
||||
ref mut ev @ None => *ev = Some(field_info),
|
||||
}
|
||||
}
|
||||
ph_ty.unwrap_or(quote!{()}) // TODO: `!` instead
|
||||
ph_ty.unwrap_or(quote! {()}) // TODO: `!` instead
|
||||
};
|
||||
|
||||
// The content of `new_handler()`.
|
||||
@ -389,8 +440,8 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
}
|
||||
|
||||
let field_name = match field.ident {
|
||||
Some(ref i) => quote!{ self.#i },
|
||||
None => quote!{ self.#field_n },
|
||||
Some(ref i) => quote! { self.#i },
|
||||
None => quote! { self.#field_n },
|
||||
};
|
||||
|
||||
let builder = quote! {
|
||||
@ -398,29 +449,33 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
};
|
||||
|
||||
match out_handler {
|
||||
Some(h) => out_handler = Some(quote!{ #into_protocols_handler::select(#h, #builder) }),
|
||||
Some(h) => {
|
||||
out_handler = Some(quote! { #into_protocols_handler::select(#h, #builder) })
|
||||
}
|
||||
ref mut h @ None => *h = Some(builder),
|
||||
}
|
||||
}
|
||||
|
||||
out_handler.unwrap_or(quote!{()}) // TODO: incorrect
|
||||
out_handler.unwrap_or(quote! {()}) // TODO: incorrect
|
||||
};
|
||||
|
||||
// The method to use to poll.
|
||||
// If we find a `#[behaviour(poll_method = "poll")]` attribute on the struct, we call
|
||||
// `self.poll()` at the end of the polling.
|
||||
let poll_method = {
|
||||
let mut poll_method = quote!{std::task::Poll::Pending};
|
||||
let mut poll_method = quote! {std::task::Poll::Pending};
|
||||
for meta_items in ast.attrs.iter().filter_map(get_meta_items) {
|
||||
for meta_item in meta_items {
|
||||
match meta_item {
|
||||
syn::NestedMeta::Meta(syn::Meta::NameValue(ref m)) if m.path.is_ident("poll_method") => {
|
||||
syn::NestedMeta::Meta(syn::Meta::NameValue(ref m))
|
||||
if m.path.is_ident("poll_method") =>
|
||||
{
|
||||
if let syn::Lit::Str(ref s) = m.lit {
|
||||
let ident: Ident = syn::parse_str(&s.value()).unwrap();
|
||||
poll_method = quote!{#name::#ident(self, cx, poll_params)};
|
||||
poll_method = quote! {#name::#ident(self, cx, poll_params)};
|
||||
}
|
||||
}
|
||||
_ => ()
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -489,7 +544,7 @@ fn build_struct(ast: &DeriveInput, data_struct: &DataStruct) -> TokenStream {
|
||||
});
|
||||
|
||||
// Now the magic happens.
|
||||
let final_quote = quote!{
|
||||
let final_quote = quote! {
|
||||
impl #impl_generics #trait_to_impl for #name #ty_generics
|
||||
#where_clause
|
||||
{
|
||||
@ -609,7 +664,7 @@ fn is_ignored(field: &syn::Field) -> bool {
|
||||
syn::NestedMeta::Meta(syn::Meta::Path(ref m)) if m.is_ident("ignore") => {
|
||||
return true;
|
||||
}
|
||||
_ => ()
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user