clean up various things and add the DXXml.pm module
[spider.git] / perl / Thingy / Hello.pm
index ed3e5b5cc68f7c5e607ab77b83c771657e0bd16c..7221d7898722fc58dd15a451b388211d5ada13fd 100644 (file)
@@ -33,14 +33,20 @@ $verify_on_login = 1;                       # make sure that a HELLO coming from
 sub gen_Aranea
 {
        my $thing = shift;
+       my $dxchan = shift;
+       
        unless ($thing->{Aranea}) {
-               $thing->add_auth;
-
-               $thing->{sw} ||= 'DXSp';
-               $thing->{v} ||= $main::version;
-               $thing->{b} ||= $main::build;
+               if ($thing->{user}) {
+                       $thing->{h} ||= $dxchan->here;
+               } else {
+                       $thing->{sw} ||= 'DXSp';
+                       $thing->{v} ||= $main::me->version;
+                       $thing->{b} ||= $main::me->build;
+                       $thing->{h} ||= $main::me->here;
+                       $thing->add_auth;
+               }
                
-               $thing->{Aranea} = Aranea::genmsg($thing, [qw(sw v b s auth)]);
+               $thing->{Aranea} = Aranea::genmsg($thing, [qw(sw v b s auth)]);
        }
        return $thing->{Aranea};
 }
@@ -56,12 +62,20 @@ sub handle
        my $nref;
 
        $thing->{pc19n} ||= [];
+
+       my $v = $thing->{v};
+       if ($v) {
+               $v = $DXProt::myprot_version + int ($v*100) if $v > 2 && $v < 3;
+               $v = $DXProt::myprot_version + 150 unless $v >= 5400;
+               $v =~ s/\.\d+$//;
+               $thing->{pcv} = $v;
+       }
        
        # verify authenticity
        if ($node eq $origin) {
 
                # for directly connected calls
-               if ($verify_on_login) {
+               if ($verify_on_login && !$thing->{user}) {
                        my $pp = $dxchan->user->passphrase;
                        unless ($pp) {
                                dbglog('err', "Thingy::Hello::handle: verify on and $origin has no passphrase");
@@ -76,7 +90,7 @@ sub handle
                        }
                }
                if ($dxchan->{state} ne 'normal') {
-                       $nref = $main::routeroot->add($origin, $thing->{v}, 1);
+                       $nref = $main::routeroot->add($origin, $thing->{pcv}, $thing->{h});
                        push @{$thing->{pc19n}}, $nref if $nref;
                        $dxchan->start($dxchan->{conn}->{csort}, $dxchan->{conn}->{outbound} ? 'O' : 'A');
                        if ($dxchan->{outbound}) {
@@ -84,20 +98,22 @@ sub handle
                                $thing->send($dxchan);
 
                                # broadcast our configuration to the world
-                               $thing = Thingy::Rt->new_lcf;
+                               $thing = Thingy::Rt->new_cf;
                                $thing->broadcast;
                        }
                }
                $nref = Route::Node::get($origin);
+               $nref->np(1);
        } else {
                
                # for otherwise connected calls, that come in relayed from other nodes
                # note that we cannot do any connections at this point
                $nref = Route::Node::get($origin);
                unless ($nref) {
-                       my $v = $thing->{user} ? undef : $thing->{v};
+                       my $v = $thing->{user} ? undef : $thing->{pcv};
                        $nref = Route::Node->new($origin, $v, 1);
                        push @{$thing->{pc19n}}, $nref;
+                       $nref->np(1);
                }
        }
 
@@ -105,16 +121,25 @@ sub handle
        if (my $user = $thing->{user}) {
                my $ur = Route::get($user);
                unless ($ur) {
-                       my $uref = DXUser->get_current($user);
+                       my @ref;
+                       my $uref = DXUser->get_current($user) || Thingy::Rt::_upd_user_rec($user, $origin)->put;
                        if ($uref->is_node || $uref->is_aranea) {
-                               my $u = $nref->add($user, $thing->{v}, 1);
-                               push @{$thing->{pc19n}}, $u if $u;
+                           push @ref, $nref->add($user, $thing->{pcv} || 0, $thing->{h} || 0);
+                               push @{$thing->{pc19n}}, @ref if @ref;
+                               do $_->np(1) for @ref;
                        } else {
                                $thing->{pc16n} = $nref;
-                               $thing->{pc16u} = [$nref->add_user($user, 1)];
+                               push @ref, $nref->add_user($user, $thing->{h} || 0);
+                               $thing->{pc16u} = \@ref if @ref;
                        }
                }
+       } else {
+               $nref->version($v) unless $nref->version;
+               $nref->build($thing->{b}) unless $nref->build;
+               $nref->sw($thing->{sw}) unless $nref->sw;
+               $nref->here($thing->{h}) if exists $thing->{h};
        }
+
        RouteDB::update($origin, $node, $thing->{hopsaway});
        RouteDB::update($thing->{user}, $node, $thing->{hopsaway}) if $thing->{user};