-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from BenediktMKuehne/copyright-update
Update Meta information
- Loading branch information
Showing
61 changed files
with
342 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#!/bin/bash | ||
# EMBArk - The firmware security scanning environment | ||
# | ||
# Copyright 2020-2024 Siemens Energy AG | ||
# | ||
# EMBArk comes with ABSOLUTELY NO WARRANTY. | ||
# | ||
# EMBArk is licensed under MIT | ||
# | ||
# Author(s): Benedikt Kuehne | ||
|
||
# Description: Helper script to get our Copyright things in order | ||
|
||
# RED='\033[0;31m' | ||
GREEN='\033[0;32m' | ||
ORANGE='\033[0;33m' | ||
BOLD='\033[1m' | ||
NC='\033[0m' # no color | ||
|
||
|
||
EXCEPTIONS_TO_CHECK_ARR=() | ||
|
||
write_headers(){ | ||
# writes header info into python files | ||
# $1 end-year | ||
# $2 dir to look in | ||
# $3 excluded dir for find | ||
local YEAR_="${1:-}" | ||
local DIR_="${2:-}" | ||
|
||
|
||
|
||
echo "start finding files" | ||
mapfile -t PYTHON_FILES < <(find "${DIR_}" -type d -path ".*" -prune -false -o -type d -path "migrations" -prune -false -o -type d -path "${PWD}/emba" -prune -false -o -iname "*.py") | ||
if [[ "${#PYTHON_FILES[@]}" -gt 0 ]]; then | ||
for FILE_ in "${PYTHON_FILES[@]}"; do | ||
|
||
if grep -q "__copyright__" "${FILE_}" ; then | ||
continue | ||
fi | ||
|
||
local STARTYEAR="" | ||
local COPYRIGHT_HEADER="__copyright__ = 'Copyright ${STARTYEAR}-${YEAR_} Siemens Energy AG'" | ||
local AUTHOR_ARR=() | ||
local AUTHOR_HEADER="__author__ = '" | ||
local LICENSE_HEADER="__license__ = 'MIT'" | ||
|
||
readarray -t AUTHOR_ARR < <(git shortlog -n -s "${FILE_}" 2>/dev/null | sort -gr | cut -c 8- ) # gets commit count for file/folder | ||
AUTHOR_ARR=( "${AUTHOR_ARR[@]/%/,}" ) | ||
AUTHOR_HEADER+="${AUTHOR_ARR[]}" | ||
AUTHOR_HEADER="${AUTHOR_HEADER%?}'" | ||
|
||
STARTYEAR="$(git log --follow --format=%ad --date default "${FILE_}" | tail -1 | cut -d ' ' -f 5)" | ||
|
||
echo "debug-print \$\{\#AUTHOR_ARR\[\@\]\} ${#AUTHOR_ARR[@]}" | ||
echo "debug-print \$\{AUTHOR_ARR\[\*\]\} ${AUTHOR_ARR[*]}" | ||
if [[ "${#AUTHOR_ARR[@]}" -eq 1 && ! "${AUTHOR_ARR[*]}" =~ "Benedikt" ]]; then | ||
# add AMOS copyright | ||
COPYRIGHT_HEADER="${COPYRIGHT_HEADER%?}, Copyright 2021 The AMOS Projects'" | ||
fi | ||
|
||
|
||
# debug messages | ||
echo "FILE: ${FILE_}" | ||
echo "get copyright: ${COPYRIGHT_HEADER}" | ||
echo "gets authors: ${AUTHOR_HEADER}" | ||
echo "gets license: ${LICENSE_HEADER}" | ||
echo "file first line is:" | ||
head -n 1 "${FILE_}" | ||
echo | ||
|
||
|
||
if ! ( head -n 1 "${FILE_}" | grep -q '#' ) ; then | ||
echo "Doesn't have a #" | ||
sed -i "1s/^/${LICENSE_HEADER}\n\n/" "${FILE_}" | ||
sed -i "1s/^/${AUTHOR_HEADER}\n/" "${FILE_}" | ||
sed -i "1s/^/${COPYRIGHT_HEADER}\n/" "${FILE_}" | ||
else | ||
echo "HAS a #" | ||
|
||
EXCEPTIONS_TO_CHECK_ARR+=( "${FILE_}" ) | ||
echo -e "Found problem with ${ORANGE}${FILE_}""${NC}""\\n" | ||
echo -e "\\n""${ORANGE}${BOLD}==> FIX ERRORS""${NC}""\\n" | ||
|
||
fi | ||
done | ||
else | ||
echo -e "\\n""${GREEN}""==> Found no Python files""${NC}""\\n" | ||
fi | ||
} | ||
|
||
|
||
write_headers 2024 "${PWD}/embark/" | ||
|
||
|
||
if [[ "${#EXCEPTIONS_TO_CHECK_ARR[@]}" -gt 0 ]]; then | ||
echo -e "${ORANGE}${BOLD}==> Please take a look at those Exceptions!""${NC}" | ||
fi | ||
echo -e "${GREEN}${BOLD}===> ALL CHECKS SUCCESSFUL""${NC}" | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.