@@ -650,34 +650,14 @@ disco_local_features(Acc, _, _) ->
650
650
Acc :: mongoose_disco :identity_acc (),
651
651
Params :: map (),
652
652
Extra :: gen_hook :extra ().
653
- disco_sm_identity (Acc = #{from_jid := From , to_jid := To , node : = Node }, _ , _ ) ->
654
- Identities = disco_identity (jid :to_lower (jid :to_bare (To )), Node , From ),
653
+ disco_sm_identity (Acc = #{from_jid := From , to_jid := To }, _ , _ ) ->
654
+ Identities = disco_identity (jid :to_lower (jid :to_bare (To )), From ),
655
655
{ok , mongoose_disco :add_identities (Identities , Acc )}.
656
656
657
- disco_identity (error , _Node , _From ) ->
657
+ disco_identity (error , _From ) ->
658
658
[];
659
- disco_identity (_Host , <<>>, _From ) ->
660
- [pep_identity ()];
661
- disco_identity (Host , Node , From ) ->
662
- Action = fun (# pubsub_node {id = Nidx , type = Type , options = Options , owners = Owners }) ->
663
- case get_allowed_items_call (Host , Nidx , From , Type , Options , Owners ) of
664
- {result , _ } ->
665
- {result , [pep_identity (), pep_identity (Options )]};
666
- _ ->
667
- {result , []}
668
- end
669
- end ,
670
- case dirty (Host , Node , Action , ? FUNCTION_NAME ) of
671
- {result , {_ , Result }} -> Result ;
672
- _ -> []
673
- end .
674
-
675
- pep_identity (Options ) ->
676
- Identity = pep_identity (),
677
- case get_option (Options , title ) of
678
- false -> Identity ;
679
- [Title ] -> Identity #{name => Title }
680
- end .
659
+ disco_identity (_Host , _From ) ->
660
+ [pep_identity ()].
681
661
682
662
pep_identity () ->
683
663
#{category => <<" pubsub" >>, type => <<" pep" >>}.
@@ -686,39 +666,26 @@ pep_identity() ->
686
666
Acc :: mongoose_disco :feature_acc (),
687
667
Params :: map (),
688
668
Extra :: gen_hook :extra ().
689
- disco_sm_features (Acc = #{from_jid := From , to_jid := To , node : = Node }, _ , _ ) ->
690
- Features = disco_features (jid :to_lower (jid :to_bare (To )), Node , From ),
669
+ disco_sm_features (Acc = #{from_jid := From , to_jid := To }, _ , _ ) ->
670
+ Features = disco_features (jid :to_lower (jid :to_bare (To )), From ),
691
671
{ok , mongoose_disco :add_features (Features , Acc )}.
692
672
693
- - spec disco_features (error | jid :simple_jid (), binary (), jid :jid ()) -> [mongoose_disco :feature ()].
694
- disco_features (error , _Node , _From ) ->
673
+ - spec disco_features (error | jid :simple_jid (), jid :jid ()) -> [mongoose_disco :feature ()].
674
+ disco_features (error , _From ) ->
695
675
[];
696
- disco_features (_Host , <<>>, _From ) ->
697
- [? NS_PUBSUB | [feature (F ) || F <- plugin_features (<<" pep" >>)]];
698
- disco_features (Host , Node , From ) ->
699
- Action = fun (# pubsub_node {id = Nidx , type = Type , options = Options , owners = Owners }) ->
700
- case get_allowed_items_call (Host , Nidx , From , Type , Options , Owners ) of
701
- {result , _ } ->
702
- {result , [? NS_PUBSUB | [feature (F ) || F <- plugin_features (<<" pep" >>)]]};
703
- _ ->
704
- {result , []}
705
- end
706
- end ,
707
- case dirty (Host , Node , Action , ? FUNCTION_NAME ) of
708
- {result , {_ , Result }} -> Result ;
709
- _ -> []
710
- end .
676
+ disco_features (_Host , _From ) ->
677
+ [? NS_PUBSUB | [feature (F ) || F <- plugin_features (<<" pep" >>)]].
711
678
712
679
- spec disco_sm_items (Acc , Params , Extra ) -> {ok , Acc } when
713
680
Acc :: mongoose_disco :item_acc (),
714
681
Params :: map (),
715
682
Extra :: gen_hook :extra ().
716
- disco_sm_items (Acc = #{from_jid := From , to_jid := To , node : = Node }, _ , _ ) ->
717
- Items = disco_items (jid :to_lower (jid :to_bare (To )), Node , From ),
683
+ disco_sm_items (Acc = #{from_jid := From , to_jid := To }, _ , _ ) ->
684
+ Items = disco_items (jid :to_lower (jid :to_bare (To )), From ),
718
685
{ok , mongoose_disco :add_items (Items , Acc )}.
719
686
720
- - spec disco_items (mod_pubsub :host (), mod_pubsub : nodeId (), jid :jid ()) -> [mongoose_disco :item ()].
721
- disco_items (Host , <<>>, From ) ->
687
+ - spec disco_items (mod_pubsub :host (), jid :jid ()) -> [mongoose_disco :item ()].
688
+ disco_items (Host , From ) ->
722
689
Action = fun (# pubsub_node {nodeid = {_ , Node },
723
690
options = Options , type = Type , id = Nidx , owners = Owners },
724
691
Acc ) ->
@@ -741,20 +708,6 @@ disco_items(Host, <<>>, From) ->
741
708
case mod_pubsub_db_backend :dirty (NodeBloc , ErrorDebug ) of
742
709
{result , Items } -> Items ;
743
710
_ -> []
744
- end ;
745
- disco_items (Host , Node , From ) ->
746
- Action = fun (# pubsub_node {id = Nidx , type = Type , options = Options , owners = Owners }) ->
747
- case get_allowed_items_call (Host , Nidx , From , Type , Options , Owners ) of
748
- {result , Items } ->
749
- {result , [disco_item (Host , ItemId ) ||
750
- # pubsub_item {itemid = {ItemId , _ }} <- Items ]};
751
- _ ->
752
- {result , []}
753
- end
754
- end ,
755
- case dirty (Host , Node , Action , ? FUNCTION_NAME ) of
756
- {result , {_ , Result }} -> Result ;
757
- _ -> []
758
711
end .
759
712
760
713
disco_item (Node , Host , Options ) ->
@@ -765,10 +718,6 @@ disco_item(Node, Host, Options) ->
765
718
[Title ] -> Item #{name => Title }
766
719
end .
767
720
768
- disco_item (Host , ItemId ) ->
769
- #{jid => jid :to_binary (Host ),
770
- name => ItemId }.
771
-
772
721
% % -------
773
722
% % callback that prevents routing subscribe authorizations back to the sender
774
723
% %
0 commit comments