#!/usr/bin/env python # # Note: This script will pull all the servers addresses off the servers output. # In order for that to work, you must add the Address field on each server form. # # Usage: # p4deleteuser.py [instance] user_to_remove # p4deleteuser.py [instance] file_with_users_to_remove # # What this scripts does: # Removes user and any clients/shelves owned by that user. # # instance defaults to 1 if not given. import os import sys import accessdates import removeuserfromgroups import re import sdputils if len(sys.argv) > 2: # see params above SDP_INSTANCE = str(sys.argv[1]) else: SDP_INSTANCE = '1' utils = sdputils.SDPUtils(SDP_INSTANCE) config = utils.config p4 = utils.p4 p4_noport = "/p4/%s/bin/p4_%s -u %s" % (SDP_INSTANCE, SDP_INSTANCE, config.p4user) utils.login() sim = 0 clientlist = [] skipusers = ["p4admin", "perforce", "swarm"] master_port = config.server ###################################################################################################### def delete_clients (clientlist, sim): serverids = {} masterid = "master" for server in os.popen('%s -ztag -F "%ServerID%","%Address%","%Services%" servers' % (p4)).readlines(): id, address, services = server.split(',') services = services.strip() if (services == "commit-server" or services == "standard"): masterid = id if (services == "edge-server" or services == "commit-server"): serverids.update({id.strip():address.strip()}) for client in clientlist: print ("Deleting Client: %s" % (client)) if sim == 0: p4port = master_port serverid = masterid client = client.strip() serverid_list = os.popen('%s -ztag -F %%ServerID%% client -o %s' % (p4, client)).readlines() if serverid_list: serverid = serverid_list[0].strip() p4port = serverids[serverid] os.system('echo %s|%s -p %s login -a' % (config.passwd, p4_noport, p4port)) os.system('%s -c p4deleteuser -p %s -Ztag changes -s shelved -c %s > shelved.txt' % (p4_noport, p4port, client)) if(os.path.isfile("shelved.txt")): shelvedfile = open("shelved.txt", "r") for changeline in shelvedfile.readlines(): if re.search("\.\.\. change ", changeline): changenum = changeline[11:] changenum = changenum.strip() os.system('%s -c p4deleteuser -p %s shelve -c "%s" -df' % (p4_noport, p4port, changenum)) shelvedfile.close() os.remove("shelved.txt") try: os.system('%s -c p4deleteuser -p %s client -f -d -Fs "%s"' % (p4_noport, p4port, client)) except: try: os.system("%s -c p4deleteuser -p %s client -f -d -Fs '%s'" % (p4_noport, p4port, client)) except: print("Could not delete client %s" % client) utils.login() ###################################################################################################### def delete_users(userlist, sim): for user in userlist: print("Deleting User: '%s'" % user) if sim == 0: os.system("%s user -f -d '%s'" % (p4, user)) ###################################################################################################### def get_clients(userlist): for user in userlist: for line in os.popen("%s clients -u '%s'" % (p4, user)): client = line.split()[1] clientlist.append(client) for line in os.popen("%s clients -u '%s' -U" % (p4, user)): client = line.split()[1] clientlist.append(client) for line in os.popen("%s opened -u '%s'" % (p4, user)): client = re.sub('.*\@', '', line) client = re.sub('\*exclusive\*', '', client) client = re.sub('\*locked\*', '', client) client = client.strip() if client not in clientlist: clientlist.append(client) ###################################################################################################### def cleanup(): os.remove('groups.txt') ###################################################################################################### def setup(): os.system('%s groups > groups.txt' % p4) ###################################################################################################### def mainbody(userorfile): userlist = [] try: input = open(userorfile, "r") except: print("Unable to open file %s assuming it is the username." % userorfile) user = userorfile.strip() userlist.append(user) removeuserfromgroups.automain(userlist) get_clients(userlist) delete_clients(clientlist, sim) delete_users(userlist, sim) cleanup() sys.exit(0) p4users = os.popen('p4 users | cut -d " " -f1').read() for line in input.readlines(): line = line.strip() if line not in skipusers: if (line in p4users): userlist.append(line) input.close() removeuserfromgroups.automain(userlist) get_clients(userlist) delete_clients(clientlist, sim) delete_users(userlist, sim) cleanup() ###################################################################################################### def automain(): accessdates.createlist("users", "user", config.weeks) setup() mainbody("users.txt") ###################################################################################################### def main(): if len(sys.argv) < 2: print("Read the usage section at the top of the script for required parameters.") sys.exit(1) setup() # Handle the optional instance parameter shift if len(sys.argv) > 2: mainbody(sys.argv[2]) else: mainbody(sys.argv[1]) ###################################################################################################### if __name__ == '__main__': main()
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#4 | 25113 | Robert Cowham | Merge latest changes from dev | ||
#3 | 22142 | Robert Cowham | Merge in latest changes from Dev | ||
#2 | 20726 | Robert Cowham | Catch up from dev | ||
#1 | 18586 | Robert Cowham | Branching using cowhamr.sdp.dev | ||
//guest/perforce_software/sdp/dev/Maintenance/p4deleteuser.py | |||||
#8 | 16638 | C. Thomas Tyler |
Routine merge down to dev from main using: p4 merge -b perforce_software-sdp-dev |
||
#7 | 16029 | C. Thomas Tyler |
Routine merge to dev from main using: p4 merge -b perforce_software-sdp-dev |
||
#6 | 15375 | adrian_waters | Routine merge-down from main->dev | ||
#5 | 13906 | C. Thomas Tyler |
Normalized P4INSTANCE to SDP_INSTANCE to get Unix/Windows implementations in sync. Reasons: 1. Things that interact with SDP in both Unix and Windows environments shoudn't have to account for this obscure SDP difference between Unix and Windows. (I came across this doing CBD work). 2. The Windows and Unix scripts have different variable names for defining the same concept, the SDP instance. Unix uses P4INSTANCE, while Windows uses SDP_INSTANCE. 3. This instance tag, a data set identifier, is an SDP concept. I prefer the SDP_INSTANCE name over P4INSTANCE, so I prpose to normalize to SDP_INSTANCE. 4. The P4INSTANCE name makes it look like a setting that might be recognized by the p4d itself, which it is not. (There are other such things such as P4SERVER that could perhaps be renamed as a separate task; but I'm not sure we want to totally disallow the P4 prefix for variable names. It looks too right to be wrong in same cases, like P4BIN and P4DBIN. That's a discussion for another day, outside the scope of this task). Meanwhile: * Fixed a bug in the Windows 2013.3 upgrade script that was referencing undefined P4INSTANCE, as the Windows environment defined only SDP_INSTANCE. * Had P4INSTANCE been removed completely, this change would likely cause trouble for users doing updates for existing SDP installations. So, though it involves slight technical debt, I opted to keep a redundant definition of P4INSTANCE in p4_vars.template, with comments indicating SDP_INSTANCE should be used in favor of P4INSTANCE, with a warning that P4INSTANCE may go away in a future release. This should avoid unnecessary upgrade pain. * In mkdirs.sh, the varialbe name was INSTANCE rather than SDP_INSTANCE. I changed that as well. That required manual change rather than sub/replace to avoid corrupting other similar varialbe names (e.g. MASTERINSTANCE). This is a trivial change technically (a substitute/replace, plus tweaks in p4_vars.template), but impacts many files. |
||
#4 | 12028 | C. Thomas Tyler | Refreshed SDP dev branch, merging down from main. | ||
#3 | 11477 | Russell C. Jackson (Rusty) |
Updated to use /usr/bin/env python Added workshop header. Changed cfg to config. |
||
#2 | 11464 | Russell C. Jackson (Rusty) | Current maintenance scripts. | ||
#1 | 10638 | C. Thomas Tyler | Populate perforce_software-sdp-dev. | ||
//guest/perforce_software/sdp/main/Maintenance/p4deleteuser.py | |||||
#1 | 10148 | C. Thomas Tyler | Promoted the Perforce Server Deployment Package to The Workshop. |