]> jfr.im git - irc/rqf/shadowircd.git/commitdiff
Put back resv_forcepart.
authorJilles Tjoelker <redacted>
Sat, 9 Jan 2010 18:08:48 +0000 (19:08 +0100)
committerJilles Tjoelker <redacted>
Sat, 9 Jan 2010 18:08:48 +0000 (19:08 +0100)
This undoes erroneous revert in a3c064b3b8a2.

modules/m_resv.c

index 75b73c613d95e63cb53d2180cab101e3e5cc3330..5101023452cda99664a84111f1ba00148428a2c5 100644 (file)
@@ -69,6 +69,7 @@ static void cluster_resv(struct Client *source_p, int temp_time,
 
 static void handle_remote_unresv(struct Client *source_p, const char *name);
 static void remove_resv(struct Client *source_p, const char *name);
+static void resv_chan_forcepart(const char *name, const char *reason, int temp_time);
 
 /*
  * mo_resv()
@@ -220,6 +221,7 @@ parse_resv(struct Client *source_p, const char *name, const char *reason, int te
                aconf->host = rb_strdup(name);
                aconf->passwd = rb_strdup(reason);
                add_to_resv_hash(aconf->host, aconf);
+               resv_chan_forcepart(aconf->host, aconf->passwd, temp_time);
 
                if(temp_time > 0)
                {
@@ -508,3 +510,54 @@ remove_resv(struct Client *source_p, const char *name)
 
        return;
 }
+
+static void 
+resv_chan_forcepart(const char *name, const char *reason, int temp_time)
+{
+       rb_dlink_node *ptr;
+       rb_dlink_node *next_ptr;
+       struct Channel *chptr;
+       struct membership *msptr;
+       struct Client *target_p;
+
+       if(!ConfigChannel.resv_forcepart)
+               return;
+
+       /* for each user on our server in the channel list
+        * send them a PART, and notify opers.
+        */
+       chptr = find_channel(name);
+       if(chptr != NULL)
+       {
+               RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->locmembers.head)
+               {
+                       msptr = ptr->data;
+                       target_p = msptr->client_p;
+
+                       if(IsExemptResv(target_p))
+                               continue;
+
+                       sendto_server(target_p, chptr, CAP_TS6, NOCAPS,
+                                     ":%s PART %s", target_p->id, chptr->chname);
+
+                       sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
+                                            target_p->name, target_p->username,
+                                            target_p->host, chptr->chname, target_p->name);
+
+                       remove_user_from_channel(msptr);
+
+                       /* notify opers & user they were removed from the channel */
+                       sendto_realops_snomask(SNO_GENERAL, L_ALL,
+                                            "Forced PART for %s!%s@%s from %s (%s)",
+                                            target_p->name, target_p->username, 
+                                            target_p->host, name, reason);
+
+                       if(temp_time > 0)
+                               sendto_one_notice(target_p, ":*** Channel %s is temporarily unavailable on this server.",
+                                          name);
+                       else
+                               sendto_one_notice(target_p, ":*** Channel %s is no longer available on this server.",
+                                          name);
+               }
+       }
+}