p4deleteuser.py #12

  • //
  • guest/
  • perforce_software/
  • sdp/
  • main/
  • Maintenance/
  • p4deleteuser.py
  • View
  • Commits
  • Open Download .zip Download (6 KB)
#!/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
#14 27331 C. Thomas Tyler Released SDP 2020.1.27325 (2021/01/29).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#13 26161 C. Thomas Tyler Released SDP 2019.3.26159 (2019/11/06).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#12 25245 C. Thomas Tyler Released SDP 2019.1.25238 (2019/03/02).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#11 21810 C. Thomas Tyler Released SDP 2017.1.21808 (2017/03/08).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#10 20767 C. Thomas Tyler Released SDP 2016.2.20755 (2016/09/29).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#9 18961 C. Thomas Tyler Released: SDP/MultiArch/2016.1/18958 (2016/04/08).
#8 16581 Robert Cowham Standardised processing and formatting.
Made python 2/3 compatible.
These need automated testing!
#7 15976 Russell C. Jackson (Rusty) Added try/except around client delete.
#6 15856 C. Thomas Tyler Replaced the big license comment block with a shortened
form referencing the LICENSE file included with the SDP
package, and also by the URL for the license file in
The Workshop.
#5 15314 Russell C. Jackson (Rusty) Added quotes around client name.
#4 13908 C. Thomas Tyler Pushing SDP 2015.1.13906.
#3 11583 Russell C. Jackson (Rusty) Added -Fs to client delete in case shelves can't be deleted for some reason.

 Added replacement of / with _ for group file names to avoid errors with
 groups that have a / in the name.
#2 11524 Russell C. Jackson (Rusty) Released updated version of the SDP from Dev.
#1 10148 C. Thomas Tyler Promoted the Perforce Server Deployment Package to The Workshop.