[gaim-migrate @ 3063]
[pidgin-git.git] / src / protocols / zephyr / ZLocations.c
blob283479223212e2806e8aecf85daa088c07c42799
1 /* This file is part of the Project Athena Zephyr Notification System.
2 * It contains source for the ZSetLocation, ZUnsetLocation, and
3 * ZFlushMyLocations functions.
5 * Created by: Robert French
7 * $Source$
8 * $Author: warmenhoven $
10 * Copyright (c) 1987,1988,1991 by the Massachusetts Institute of Technology.
11 * For copying and distribution information, see the file
12 * "mit-copyright.h".
14 /* $Header$ */
16 #ifndef lint
17 static char rcsid_ZLocations_c[] =
18 "$Zephyr: /afs/athena.mit.edu/astaff/project/zephyr/src/lib/RCS/ZLocations.c,v 1.30 90/12/20 03:04:39 raeburn Exp $";
19 #endif
21 #include <internal.h>
23 #include <pwd.h>
25 extern char *getenv();
26 extern int errno;
28 Code_t ZSetLocation(exposure)
29 char *exposure;
31 return (Z_SendLocation(LOGIN_CLASS, exposure, ZAUTH,
32 "$sender logged in to $1 on $3 at $2"));
35 Code_t ZUnsetLocation()
37 return (Z_SendLocation(LOGIN_CLASS, LOGIN_USER_LOGOUT, ZNOAUTH,
38 "$sender logged out of $1 on $3 at $2"));
41 Code_t ZFlushMyLocations()
43 return (Z_SendLocation(LOGIN_CLASS, LOGIN_USER_FLUSH, ZAUTH, ""));
46 static char host[MAXHOSTNAMELEN], mytty[MAXPATHLEN];
47 static int reenter = 0;
49 Code_t Z_SendLocation(class, opcode, auth, format)
50 char *class;
51 char *opcode;
52 Z_AuthProc auth;
53 char *format;
55 int retval;
56 time_t ourtime;
57 ZNotice_t notice, retnotice;
58 char *bptr[3], *p;
59 #ifndef X_DISPLAY_MISSING
60 char *display;
61 #endif
62 char *ttyp;
63 struct hostent *hent;
64 short wg_port = ZGetWGPort();
66 (void) memset((char *)&notice, 0, sizeof(notice));
67 notice.z_kind = ACKED;
68 notice.z_port = (u_short) ((wg_port == -1) ? 0 : wg_port);
69 notice.z_class = class;
70 notice.z_class_inst = ZGetSender();
71 notice.z_opcode = opcode;
72 notice.z_sender = 0;
73 notice.z_recipient = "";
74 notice.z_num_other_fields = 0;
75 notice.z_default_format = format;
78 keep track of what we said before so that we can be consistent
79 when changing location information.
80 This is done mainly for the sake of the WindowGram client.
83 if (!reenter) {
84 if (gethostname(host, MAXHOSTNAMELEN) < 0)
85 return (errno);
87 hent = gethostbyname(host);
88 if (hent) {
89 (void) strncpy(host, hent->h_name, sizeof(host));
90 host[sizeof(host) - 1] = '\0';
92 #ifndef X_DISPLAY_MISSING
93 if ((display = getenv("DISPLAY")) && *display) {
94 (void) strcpy(mytty, display);
95 } else {
96 #endif
97 ttyp = ttyname(0);
98 if (ttyp && *ttyp) {
99 p = strchr(ttyp + 1, '/');
100 strcpy(mytty, (p) ? p + 1 : ttyp);
101 } else {
102 strcpy(mytty, "unknown");
104 #ifndef X_DISPLAY_MISSING
106 #endif
107 reenter = 1;
110 ourtime = time((time_t *)0);
111 bptr[0] = host;
112 bptr[1] = ctime(&ourtime);
113 bptr[1][strlen(bptr[1])-1] = '\0';
114 bptr[2] = mytty;
117 if ((retval = ZSendList(&notice, bptr, 3, auth)) != ZERR_NONE)
118 return (retval);
120 retval = Z_WaitForNotice (&retnotice, ZCompareUIDPred, &notice.z_uid,
121 SRV_TIMEOUT);
122 if (retval != ZERR_NONE)
123 return retval;
125 if (retnotice.z_kind == SERVNAK) {
126 if (!retnotice.z_message_len) {
127 ZFreeNotice(&retnotice);
128 return (ZERR_SERVNAK);
130 if (!strcmp(retnotice.z_message, ZSRVACK_NOTSENT)) {
131 ZFreeNotice(&retnotice);
132 return (ZERR_AUTHFAIL);
134 if (!strcmp(retnotice.z_message, ZSRVACK_FAIL)) {
135 ZFreeNotice(&retnotice);
136 return (ZERR_LOGINFAIL);
138 ZFreeNotice(&retnotice);
139 return (ZERR_SERVNAK);
142 if (retnotice.z_kind != SERVACK) {
143 ZFreeNotice(&retnotice);
144 return (ZERR_INTERNAL);
147 if (!retnotice.z_message_len) {
148 ZFreeNotice(&retnotice);
149 return (ZERR_INTERNAL);
152 if (strcmp(retnotice.z_message, ZSRVACK_SENT) &&
153 strcmp(retnotice.z_message, ZSRVACK_NOTSENT)) {
154 ZFreeNotice(&retnotice);
155 return (ZERR_INTERNAL);
158 ZFreeNotice(&retnotice);
160 return (ZERR_NONE);