|
| 1 | +#!/usr/bin/env python3 |
| 2 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 3 | +# or more contributor license agreements. See the NOTICE file |
| 4 | +# distributed with this work for additional information |
| 5 | +# regarding copyright ownership. The ASF licenses this file |
| 6 | +# to you under the Apache License, Version 2.0 (the |
| 7 | +# "License"); you may not use this file except in compliance |
| 8 | +# with the License. You may obtain a copy of the License at |
| 9 | +# |
| 10 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +# |
| 12 | +# Unless required by applicable law or agreed to in writing, |
| 13 | +# software distributed under the License is distributed on an |
| 14 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | +# KIND, either express or implied. See the License for the |
| 16 | +# specific language governing permissions and limitations |
| 17 | +# under the License. |
| 18 | +from __future__ import annotations |
| 19 | + |
| 20 | +import subprocess |
| 21 | +import sys |
| 22 | + |
| 23 | + |
| 24 | +def get_staged_files(): |
| 25 | + """Return a list of files that are staged for commit.""" |
| 26 | + result = subprocess.run( |
| 27 | + ["git", "diff", "--cached", "--name-only"], |
| 28 | + capture_output=True, |
| 29 | + text=True, |
| 30 | + ) |
| 31 | + if result.returncode != 0: |
| 32 | + print("Error: Unable to retrieve staged files.", file=sys.stderr) |
| 33 | + sys.exit(1) |
| 34 | + return result.stdout.splitlines() |
| 35 | + |
| 36 | + |
| 37 | +def main(): |
| 38 | + staged_files = get_staged_files() |
| 39 | + # Look for any file ending with .zip (case-insensitive) |
| 40 | + zip_files = [f for f in staged_files if f.lower().endswith(".zip")] |
| 41 | + if zip_files: |
| 42 | + print("Error: Committing .zip files is not allowed.") |
| 43 | + print("The following .zip file(s) were found in your staged changes:") |
| 44 | + for file in zip_files: |
| 45 | + print(" -", file) |
| 46 | + sys.exit(1) |
| 47 | + sys.exit(0) |
| 48 | + |
| 49 | + |
| 50 | +if __name__ == "__main__": |
| 51 | + main() |
0 commit comments