def assign(args): if args.dry_run: raise NotImplementedError("'--dry-run' is not implemented") if args.student: raise NotImplementedError("'--student' is not implemented") with config(args.config) as conf, tempfile.TemporaryDirectory() as tmpdirname: base = BaseRepo(conf['gitlab-host'], conf['namespace'], args.name, conf['token']) base.clone_to(tmpdirname) count = 0 for student in conf['roster']: try: name = StudentRepo.name(conf['semester'], student['section'], args.name, student['username']) repo = StudentRepo(conf['gitlab-host'], conf['namespace'], name, conf['token']) repo.info logging.warning("Student repository %s already exists.", repo.name) if args.force: logging.warning("Deleting...") repo.delete() repo = StudentRepo.new(base, conf['semester'], student['section'], student['username'], conf['token']) repo.push(base) count += 1 else: logging.warning("Skipping...") except HTTPError as e: if e.response.status_code == 404: repo = StudentRepo.new(base, conf['semester'], student['section'], student['username'], conf['token']) repo.push(base) count += 1 else: raise print("Assigned homework ", args.name, " to ", count, " students")
def new(args): with config(args.config) as conf: if args.dry_run: url = Repo.build_url(conf['gitlab-host'], conf['namespace'], args.name) print("Created repo at ", url) else: try: repo = BaseRepo.new(args.name, conf['namespace'], conf['gitlab-host'], conf['token']) print("Created repo at ", repo.url) except HTTPError as e: if e.response.status_code == 400: logger.warning("Repository %s already exists!", args.name) else: raise
def new(conf, args): """Creates a new base repository for an assignment so that you can add the instructions, sample code, etc. """ hw_name = args.name dry_run = args.dry_run host = conf.gitlab_host namespace = conf.namespace token = conf.token if dry_run: url = Repo.build_url(host, namespace, hw_name) print("Created repo at {}.".format(url)) else: try: repo = BaseRepo.new(hw_name, namespace, host, token) print("Created repo at {}.".format(repo.url)) except HTTPError as e: if e.response.status_code == 400: logger.warning("Repository {} already exists!".format(hw_name)) else: raise
def assign(conf, args): """Creates homework repositories for an assignment for each student in the roster. """ hw_name = args.name if args.branch: branch = args.branch else: branch = "master" dry_run = args.dry_run force = args.force host = conf.gitlab_host namespace = conf.namespace token = conf.token semester = conf.semester roster = get_filtered_roster(conf.roster, args.section, args.student) actual_count = 0 # Represents the number of repos actually pushed to student_count = len(roster) with tempfile.TemporaryDirectory() as tmpdirname: print("Assigning '{}' to {} student{} in {}.".format( hw_name, student_count, "s" if student_count != 1 else "", "section " + args.section if args.section else "all sections") ) base = BaseRepo(host, namespace, hw_name, token) if not dry_run: base.clone_to(tmpdirname, branch) if force: logging.warning("Repos will be overwritten.") for i, student in enumerate(roster): username = student["username"] student_section = student["section"] full_name = StudentRepo.name(semester, student_section, hw_name, username) repo = StudentRepo(host, namespace, full_name, token) print("{}/{} - {}".format(i+1, student_count, full_name)) if not repo.already_exists(): if not dry_run: repo = StudentRepo.new(base, semester, student_section, username, token) repo.push(base, branch) actual_count += 1 logging.debug("Assigned.") elif force: logging.info("{}: Already exists.".format(full_name)) logging.info("{}: Deleting...".format(full_name)) if not dry_run: repo.delete() # HACK: Gitlab will throw a 400 if you delete and immediately recreate a repo. # A bit more than half a second was experimentally determined to prevent this issue. time.sleep(0.55) repo = StudentRepo.new(base, semester, student_section, username, token) repo.push(base, branch) actual_count += 1 logging.debug("Assigned.") elif args.branch: logging.info("{}: Already exists.".format(full_name)) # If we have an explicit branch, push anyways repo.push(base, branch) if not dry_run else None actual_count += 1 logging.debug("Assigned.") else: logging.warning("Skipping...") i += 1 print("Assigned '{}' to {} student{}.".format( hw_name, actual_count, "s" if actual_count != 1 else "" )) if actual_count == 0: logging.warning( "Consider using --force if you want to override existing repos." )