Compare commits
8 Commits
v.2.1.0a
...
c081f519dd
| Author | SHA1 | Date | |
|---|---|---|---|
| c081f519dd | |||
| 0765f45704 | |||
| 51709da8fc | |||
| 58d0e6191c | |||
| 3d9d1a1d5f | |||
| a5cde65967 | |||
| 6834469b62 | |||
| 28bc3b319e |
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
*.log
|
||||||
|
*.conf
|
||||||
|
*.db
|
||||||
|
.vscode
|
||||||
BIN
ERD_TimeTrack_Database.eddx
Normal file
BIN
ERD_TimeTrack_Database.eddx
Normal file
Binary file not shown.
BIN
Mindmap_TimeTrack.emmx
Normal file
BIN
Mindmap_TimeTrack.emmx
Normal file
Binary file not shown.
BIN
PAP_TimeTrack.eddx
Normal file
BIN
PAP_TimeTrack.eddx
Normal file
Binary file not shown.
24
README.md
24
README.md
@@ -1,24 +0,0 @@
|
|||||||
# Timetrack
|
|
||||||
Simple time tracking
|
|
||||||
|
|
||||||
## Requirements
|
|
||||||
- Python 3.9 or higher
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
*as of v.2.1.0a*
|
|
||||||
Start the script and follow the menu.
|
|
||||||
Currently no further usability.
|
|
||||||
|
|
||||||
## Agenda
|
|
||||||
- [ ] Reports
|
|
||||||
- [x] by day
|
|
||||||
- [ ] by week
|
|
||||||
- [ ] by month
|
|
||||||
- [ ] by user
|
|
||||||
- [ ] Manual time entries
|
|
||||||
- [ ] Break in time entries
|
|
||||||
- [ ] User management
|
|
||||||
- [ ] Categories
|
|
||||||
- [ ] Clients
|
|
||||||
- [ ] References
|
|
||||||
- [ ] GUI
|
|
||||||
133
timeTrack.py
133
timeTrack.py
@@ -38,6 +38,7 @@ class TimeTrack:
|
|||||||
self.DBCON.close()
|
self.DBCON.close()
|
||||||
|
|
||||||
## Prepartation
|
## Prepartation
|
||||||
|
#==============
|
||||||
### Check OS and clear screen
|
### Check OS and clear screen
|
||||||
def clear_screen(self):
|
def clear_screen(self):
|
||||||
if os.name == 'posix':
|
if os.name == 'posix':
|
||||||
@@ -261,6 +262,7 @@ class TimeTrack:
|
|||||||
return timedata
|
return timedata
|
||||||
|
|
||||||
## user handling
|
## user handling
|
||||||
|
#===============
|
||||||
### Creates a user who does not yet exist
|
### Creates a user who does not yet exist
|
||||||
def create_user(self, USER=''):
|
def create_user(self, USER=''):
|
||||||
if USER == '':
|
if USER == '':
|
||||||
@@ -336,6 +338,7 @@ class TimeTrack:
|
|||||||
self.USERNAME = data[0][1]
|
self.USERNAME = data[0][1]
|
||||||
|
|
||||||
## Time handling
|
## Time handling
|
||||||
|
#===============
|
||||||
### Creates an active event if none exists for the user
|
### Creates an active event if none exists for the user
|
||||||
def save_event(self, TIME=datetime.datetime.now()):
|
def save_event(self, TIME=datetime.datetime.now()):
|
||||||
if not self.get_active_event(USERID=self.USERID):
|
if not self.get_active_event(USERID=self.USERID):
|
||||||
@@ -386,7 +389,7 @@ class TimeTrack:
|
|||||||
else:
|
else:
|
||||||
logging.debug('Event was successfully deleted')
|
logging.debug('Event was successfully deleted')
|
||||||
|
|
||||||
# Checks for existing time entries and creates a new one if none is available.
|
### Checks for existing time entries and creates a new one if none is available.
|
||||||
def time_start(self, AUTOFORWARD=True):
|
def time_start(self, AUTOFORWARD=True):
|
||||||
self.clear_screen()
|
self.clear_screen()
|
||||||
starttime = datetime.datetime.now()
|
starttime = datetime.datetime.now()
|
||||||
@@ -445,7 +448,7 @@ class TimeTrack:
|
|||||||
print('Event von {} Uhr geladen'.format(data[1].strftime("%H:%M")))
|
print('Event von {} Uhr geladen'.format(data[1].strftime("%H:%M")))
|
||||||
self.time_stop()
|
self.time_stop()
|
||||||
|
|
||||||
# Stops existing time entries
|
### Stops existing time entries
|
||||||
def time_stop(self):
|
def time_stop(self):
|
||||||
data = self.get_active_event(USERID=self.USERID)
|
data = self.get_active_event(USERID=self.USERID)
|
||||||
logging.debug('Event stop progess is started')
|
logging.debug('Event stop progess is started')
|
||||||
@@ -504,6 +507,7 @@ class TimeTrack:
|
|||||||
logging.info('Time entry was created successfully')
|
logging.info('Time entry was created successfully')
|
||||||
|
|
||||||
self.delete_event(data[0])
|
self.delete_event(data[0])
|
||||||
|
self.clear_screen()
|
||||||
self.print_time_entry(STARTTIME=data[1], ENDTIME=endtime, ACTIVITY=action)
|
self.print_time_entry(STARTTIME=data[1], ENDTIME=endtime, ACTIVITY=action)
|
||||||
print('Zeiteintrag wurde gespeichert.')
|
print('Zeiteintrag wurde gespeichert.')
|
||||||
userinput = 0
|
userinput = 0
|
||||||
@@ -531,30 +535,41 @@ class TimeTrack:
|
|||||||
logging.debug('Terminated by the user')
|
logging.debug('Terminated by the user')
|
||||||
exit()
|
exit()
|
||||||
|
|
||||||
def timedela_to_string(self, TIME):
|
## Interactive mode
|
||||||
s = TIME.seconds
|
#==================
|
||||||
hours, remainder = divmod(s, 3600)
|
### Main menu of the interactive menu
|
||||||
minutes, seconds = divmod(remainder, 60)
|
def start_interactive_mode(self):
|
||||||
output = '{:02}:{:02}:{:02}'.format(int(hours), int(minutes), int(seconds))
|
|
||||||
return output
|
|
||||||
|
|
||||||
# Shows a time entry
|
|
||||||
def print_time_entry(self, STARTTIME='', ENDTIME='', ACTIVITY=''):
|
|
||||||
self.clear_screen()
|
self.clear_screen()
|
||||||
s = (ENDTIME - STARTTIME).seconds
|
printtext = [
|
||||||
hours, remainder = divmod(s, 3600)
|
'Was willst du tun?',
|
||||||
minutes, seconds = divmod(remainder, 60)
|
'[1] Zeiterfassung starten',
|
||||||
|
'[2] heutiger Report',
|
||||||
|
'[3] Report für Tag x',
|
||||||
|
'[0] Programm verlassen'
|
||||||
|
]
|
||||||
|
userinput = self.userchoise(printtext, 4)
|
||||||
|
|
||||||
print(50*"-")
|
if userinput == 1:
|
||||||
print('Start: {} Uhr'.format(STARTTIME.strftime('%H:%M')))
|
logging.debug('Start TimeTrack')
|
||||||
print('Ende: {} Uhr'.format(ENDTIME.strftime('%H:%M')))
|
self.time_start()
|
||||||
print('Dauer: {:02}:{:02}:{:02}'.format(int(hours), int(minutes), int(seconds)))
|
elif userinput == 2:
|
||||||
if not ACTIVITY == '':
|
logging.info('Print todays report')
|
||||||
print('Aktivität:')
|
self.report_by_day(DETAIL=True)
|
||||||
print(ACTIVITY)
|
input()
|
||||||
print(50*"-")
|
self.start_interactive_mode()
|
||||||
|
elif userinput == 3:
|
||||||
|
print('commig soon ...')
|
||||||
|
input()
|
||||||
|
self.start_interactive_mode()
|
||||||
|
elif userinput == 4:
|
||||||
|
print('commig soon ...')
|
||||||
|
input()
|
||||||
|
self.start_interactive_mode()
|
||||||
|
|
||||||
def report_by_day(self, DATE=datetime.date.today(), USER=''):
|
## Reports
|
||||||
|
#=========
|
||||||
|
### One day report, optionally with time entries
|
||||||
|
def report_by_day(self, DATE=datetime.date.today(), USER='', DETAIL=''):
|
||||||
if not USER:
|
if not USER:
|
||||||
USER = self.USERID
|
USER = self.USERID
|
||||||
timedata = self.get_time_entry(DAY=DATE, USERID=USER)
|
timedata = self.get_time_entry(DAY=DATE, USERID=USER)
|
||||||
@@ -584,41 +599,61 @@ class TimeTrack:
|
|||||||
print('{:40} {}'.format("Erfasste Zeit:", self.timedela_to_string(TRACKEDTIME)))
|
print('{:40} {}'.format("Erfasste Zeit:", self.timedela_to_string(TRACKEDTIME)))
|
||||||
print('{:40} {}'.format("Zeiteinträge:", ENTRIECOUNT))
|
print('{:40} {}'.format("Zeiteinträge:", ENTRIECOUNT))
|
||||||
|
|
||||||
def start_interactive_mode(self):
|
printtext = [
|
||||||
self.clear_screen()
|
'Zeiteinträge anzeigen?',
|
||||||
userinput = 0
|
'[1] Ja',
|
||||||
while not 0 < int(userinput) < 4:
|
'[0] Nein'
|
||||||
print('Was willst du tun?')
|
]
|
||||||
print('[1] für Zeiterfassung starten')
|
userinput = self.userchoise(printtext)
|
||||||
print('[2] für heutiger Report')
|
if userinput == 1:
|
||||||
print('[3] für Report für Tag x')
|
for entry in timedata:
|
||||||
print('[9] für Programm verlassen')
|
self.print_time_entry(entry[1], entry[2], entry[4])
|
||||||
|
else:
|
||||||
|
self.start_interactive_mode()
|
||||||
|
|
||||||
|
## Outputs
|
||||||
|
#=========
|
||||||
|
### Shows a time entry
|
||||||
|
def print_time_entry(self, STARTTIME='', ENDTIME='', ACTIVITY=''):
|
||||||
|
s = (ENDTIME - STARTTIME).seconds
|
||||||
|
hours, remainder = divmod(s, 3600)
|
||||||
|
minutes, seconds = divmod(remainder, 60)
|
||||||
|
|
||||||
|
print(50*"-")
|
||||||
|
print('Start: {} Uhr'.format(STARTTIME.strftime('%H:%M')))
|
||||||
|
print('Ende: {} Uhr'.format(ENDTIME.strftime('%H:%M')))
|
||||||
|
print('Dauer: {:02}:{:02}:{:02}'.format(int(hours), int(minutes), int(seconds)))
|
||||||
|
if not ACTIVITY == '':
|
||||||
|
print('Aktivität:')
|
||||||
|
print(ACTIVITY)
|
||||||
|
print(50*"-")
|
||||||
|
|
||||||
|
## Miscellaneous
|
||||||
|
#===============
|
||||||
|
### User selection
|
||||||
|
def userchoise(self, TEXT='', MAX=2):
|
||||||
|
userinput = -1
|
||||||
|
while not -1 < int(userinput) < MAX:
|
||||||
|
for text in TEXT:
|
||||||
|
print(text)
|
||||||
userinput = input('Aktion: ')
|
userinput = input('Aktion: ')
|
||||||
logging.debug('User input: {}'.format(userinput))
|
logging.debug('User input: {}'.format(userinput))
|
||||||
try:
|
try:
|
||||||
int(userinput)
|
int(userinput)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
userinput = 0
|
userinput = -1
|
||||||
else:
|
else:
|
||||||
if int(userinput) == 9:
|
|
||||||
logging.debug('Terminated by the user')
|
|
||||||
exit()
|
|
||||||
self.clear_screen()
|
self.clear_screen()
|
||||||
|
return int(userinput)
|
||||||
|
|
||||||
if userinput == "1":
|
### Conversion to string of Timedelta typ
|
||||||
logging.debug('Start TimeTrack')
|
def timedela_to_string(self, TIME):
|
||||||
self.time_start()
|
s = TIME.seconds
|
||||||
elif userinput == "2":
|
hours, remainder = divmod(s, 3600)
|
||||||
logging.info('Print todays report')
|
minutes, seconds = divmod(remainder, 60)
|
||||||
self.report_by_day()
|
output = '{:02}:{:02}:{:02}'.format(int(hours), int(minutes), int(seconds))
|
||||||
input()
|
return output
|
||||||
self.start_interactive_mode()
|
|
||||||
elif userinput == "3":
|
|
||||||
print('commig soon ...')
|
|
||||||
input()
|
|
||||||
self.start_interactive_mode()
|
|
||||||
|
|
||||||
print(userinput)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
test = TimeTrack()
|
test = TimeTrack()
|
||||||
|
|||||||
540
timeTrack.sh
Normal file
540
timeTrack.sh
Normal file
@@ -0,0 +1,540 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#==========
|
||||||
|
#
|
||||||
|
# timeTrack.sh
|
||||||
|
# by 4nima
|
||||||
|
# v.1.5.0
|
||||||
|
#
|
||||||
|
#==========
|
||||||
|
# Einfaches Erfassen von Zeiten mit einer SQLDB (SQLite, kein Server)
|
||||||
|
#==========
|
||||||
|
|
||||||
|
|
||||||
|
# Variablen Definieren
|
||||||
|
#=====================
|
||||||
|
# Pfad zur Datenbank (Vollständiger Pfad benutzen!)
|
||||||
|
DBDIR="/root/time/work/.timeTrack.db"
|
||||||
|
DB="timeTrack"
|
||||||
|
|
||||||
|
## Verfügbare Kategorien (0 = Default)
|
||||||
|
### ACHTUNG: in der DB werden die IDs gespeichert, verändern der Rheinfolge verfälscht Reports
|
||||||
|
# Alternativ neben Kategorien noch Tags oder Projekte anbieten
|
||||||
|
declare -a categories
|
||||||
|
categories[0]="Junk"
|
||||||
|
categories+=("Kunden")
|
||||||
|
categories+=("Internes")
|
||||||
|
categories+=("Meetings")
|
||||||
|
categories+=("Schulung")
|
||||||
|
categories+=("Pause")
|
||||||
|
categories+=("Sonstiges")
|
||||||
|
categories+=("Privates")
|
||||||
|
|
||||||
|
# Funktionen
|
||||||
|
#===========
|
||||||
|
## DB
|
||||||
|
### Erstellt eine Datenbank Datei
|
||||||
|
function createDB {
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
CREATE TABLE IF NOT EXISTS $DB (
|
||||||
|
id INTEGER PRIMARY KEY,
|
||||||
|
date INTEGER,
|
||||||
|
day INTEGER,
|
||||||
|
kw INTEGER,
|
||||||
|
task TEXT,
|
||||||
|
category INTEGER,
|
||||||
|
worktime INTEGER
|
||||||
|
);
|
||||||
|
"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Fügt einen Task in die DB ein
|
||||||
|
function insertTask {
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
INSERT INTO $DB (
|
||||||
|
date,
|
||||||
|
day,
|
||||||
|
kw,
|
||||||
|
task,
|
||||||
|
category,
|
||||||
|
worktime
|
||||||
|
) VALUES (
|
||||||
|
'$(date +%s)',
|
||||||
|
'$(date +%u)',
|
||||||
|
'$(date +%V)',
|
||||||
|
'$1',
|
||||||
|
'$2',
|
||||||
|
'$3'
|
||||||
|
);
|
||||||
|
"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Eintrag aus der Datenbank löschen
|
||||||
|
function eraseTask {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
DELETE
|
||||||
|
FROM $DB
|
||||||
|
WHERE id = $DBID
|
||||||
|
"
|
||||||
|
echo "Task wurde gelöscht"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Suche
|
||||||
|
#### Anhand der ID
|
||||||
|
function searchById {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR -column -header "
|
||||||
|
SELECT *
|
||||||
|
FROM $DB
|
||||||
|
WHERE id = $DBID
|
||||||
|
"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
#### Anhand eines Strings (in Tasks)
|
||||||
|
function searchByString {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR -column -header "
|
||||||
|
SELECT *
|
||||||
|
FROM $DB
|
||||||
|
WHERE task LIKE '%$SEARCH%'
|
||||||
|
"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Updates
|
||||||
|
#### Datum
|
||||||
|
function updateDate {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
UPDATE $DB
|
||||||
|
SET date = '$UPDATEVALUE'
|
||||||
|
WHERE id = $DBID
|
||||||
|
"
|
||||||
|
echo "Datum geupdatet"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateTask {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
UPDATE $DB
|
||||||
|
SET task = '$UPDATEVALUE'
|
||||||
|
WHERE id = $DBID
|
||||||
|
"
|
||||||
|
echo "Task geupdatet"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateCategory {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
UPDATE $DB
|
||||||
|
SET category = '$UPDATEVALUE'
|
||||||
|
WHERE id = $DBID
|
||||||
|
"
|
||||||
|
echo "Kategorie geupdatet"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateWorktime {
|
||||||
|
echo "<================================================>"
|
||||||
|
sqlite3 $DBDIR "
|
||||||
|
UPDATE $DB
|
||||||
|
SET worktime = '$UPDATEVALUE'
|
||||||
|
WHERE id = $DBID
|
||||||
|
"
|
||||||
|
echo " Arbeitszeit geupdatet"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Reports
|
||||||
|
#### Auslesen aller Heutigen Tasks
|
||||||
|
function dailyReport {
|
||||||
|
echo "<================================================>"
|
||||||
|
day=$(convertDay $(date +%u))
|
||||||
|
echo "Daly Report vom $day - KW $(date +%V)"
|
||||||
|
sqlite3 $DBDIR -column -header "
|
||||||
|
SELECT
|
||||||
|
count(id) AS 'Tasks',
|
||||||
|
time(sum(worktime), 'unixepoch') AS 'Arbeitszeit'
|
||||||
|
FROM $DB
|
||||||
|
WHERE kw = '$(date +%V)'
|
||||||
|
AND day = '$(date +%u)'
|
||||||
|
"
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
function weeklyReport {
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Weekly Report vom KW $(date +%V)"
|
||||||
|
sqlite3 $DBDIR -column -header "
|
||||||
|
SELECT
|
||||||
|
count(id) AS 'Tasks',
|
||||||
|
time(sum(worktime), 'unixepoch') AS 'Arbeitszeit'
|
||||||
|
FROM $DB
|
||||||
|
WHERE kw = '$(date +%V)'
|
||||||
|
"
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
function dailyCategoryReport {
|
||||||
|
day=$(convertDay $(date +%u))
|
||||||
|
for i in ${!categories[@]}; do
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Report für Kategorie: ${categories[i]}"
|
||||||
|
echo "Für $day in KW: $(date +%V)"
|
||||||
|
sqlite3 $DBDIR -column -header "
|
||||||
|
SELECT
|
||||||
|
count(id) AS 'Tasks',
|
||||||
|
time(sum(worktime), 'unixepoch') AS 'Arbeitszeit'
|
||||||
|
FROM $DB
|
||||||
|
WHERE kw = '$(date +%V)'
|
||||||
|
AND day = '$(date +%u)'
|
||||||
|
AND category = '$i'
|
||||||
|
"
|
||||||
|
echo
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
function weeklyCategoryReport {
|
||||||
|
week=$(convertDay $(date +%u))
|
||||||
|
for i in ${!categories[@]}; do
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Report für Kategorie: ${categories[i]}"
|
||||||
|
echo "In KW: $(date +%V)"
|
||||||
|
sqlite3 $DBDIR -column -header "
|
||||||
|
SELECT
|
||||||
|
count(id) AS 'Tasks',
|
||||||
|
time(sum(worktime), 'unixepoch') AS 'Arbeitszeit'
|
||||||
|
FROM $DB
|
||||||
|
WHERE kw = '$(date +%V)'
|
||||||
|
AND category = '$i'
|
||||||
|
"
|
||||||
|
echo
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
## Abläufe
|
||||||
|
### Prüft ob SQLite3 installiert ist und erstellt eine Datenbank wenn nicht schon vorhanden
|
||||||
|
function checkRequirements {
|
||||||
|
dpkg -l sqlite3
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Bitte sqlite3 installieren!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -d $DIR ];then
|
||||||
|
mkdir -r $DIR
|
||||||
|
fi
|
||||||
|
createDB
|
||||||
|
}
|
||||||
|
|
||||||
|
### Start des Trackings und Tätigkeits Abfrage
|
||||||
|
function startTracking {
|
||||||
|
starttime=$(date +%s)
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Time Tracking gestartet um: $(date +%H:%M)"
|
||||||
|
IFS= read -a doingwords -p "Tätigkeit? `echo $'\n> '`"
|
||||||
|
doing=${doingwords[0]}
|
||||||
|
}
|
||||||
|
|
||||||
|
### Beendet das Tacking und Kategorie Abfrage
|
||||||
|
function endTracking {
|
||||||
|
for i in ${!categories[@]}; do
|
||||||
|
echo "$i. ${categories[i]}"
|
||||||
|
done
|
||||||
|
IFS= read -p "Kategorie? `echo $'\n> '`" category
|
||||||
|
endtime=$(date +%s)
|
||||||
|
worktime=$(($endtime - $starttime))
|
||||||
|
}
|
||||||
|
|
||||||
|
### Erstellt eine Zusammenfassung zu dem eben Bearbeiteten Task
|
||||||
|
#### Verbesserung: Möglichkeit auch Tasks aus der DB erneut auszugeben
|
||||||
|
function printTask {
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Time Tracking beendet um $(date +%H:%M) - $outputtime"
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Du hast $outputtime in ${categories[$category]} investiert"
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Task: $doing"
|
||||||
|
echo "<================================================>"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -D(atenbank)
|
||||||
|
function showDB {
|
||||||
|
sqlite3 $DBDIR -column -header "SELECT * from $DB"
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -c(onfig) [/path/to/config.file]
|
||||||
|
function config {
|
||||||
|
if [ -f $OPTARG ];then
|
||||||
|
config=$OPTARG
|
||||||
|
echo $config
|
||||||
|
# Datei einlesen; Prüfung was angepasst wurde (DB / DB file / Kategorien); validieren; weiter oder exit.
|
||||||
|
else
|
||||||
|
echo "Dieses Konfigfile existiert nicht"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -e(rase) [DB ID]
|
||||||
|
function erase {
|
||||||
|
if [[ $OPTARG =~ ^[0-9]+$ ]]; then
|
||||||
|
DBID=$OPTARG
|
||||||
|
searchById
|
||||||
|
IFS= read -p "Diesen Eintrag löschen?(y/n) `echo $'\n> '`" DELIT
|
||||||
|
if [ $DELIT == "Y" ] || [ $DELIT == "y" ]; then
|
||||||
|
eraseTask
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Gib die ID des zu löschenden Tasks ein"
|
||||||
|
echo "Mit '-s' kannst du eine Suche starten"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -h(elp)
|
||||||
|
function printHelp {
|
||||||
|
echo '
|
||||||
|
Benutzung: ./timeTrack.sh [option [argument]]
|
||||||
|
|
||||||
|
Ohne Option wird das Skript für eine Zeitmessung ausgeführt und dann beendet.
|
||||||
|
|
||||||
|
Optionen:
|
||||||
|
-D # Listet die Tabelle der Datenbank auf
|
||||||
|
-c [arg] # Konfigurationsdatei
|
||||||
|
-e [DB ID] # Eintrag aus Tabelle löschen (Siehe -s)
|
||||||
|
-h # Zeigt diese Hilfe
|
||||||
|
-H [option] # Zeigt Detail Hilfe zu der Option
|
||||||
|
-i # Startet eine Aufgaben speicherung mit eigenen Zeiteingaben
|
||||||
|
-l # Startet das Skript im Loop (abbrechen mit Strg + C)
|
||||||
|
-r [type] # Zeigt Reports für [day / week / month / category / ...]
|
||||||
|
-s [string] # Sucht in der Datenbank nach [string] (nur im Aufgaben Feld)
|
||||||
|
-u [DB ID] # Update für bereits vorhandene Einträge in der Datenbank (Siehe -s)
|
||||||
|
'
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufrug bei -H(elp) [option]
|
||||||
|
function helpTo {
|
||||||
|
case $1 in
|
||||||
|
c)
|
||||||
|
echo '
|
||||||
|
Benutzung: ./timeTrack.sh -c /path/to/my.conf
|
||||||
|
|
||||||
|
Mit der Option -c kann ein eine Konigurationsdatei angegeben werden.
|
||||||
|
In der Konfigurationsdatei können individuelle Parameter übergeben werden:
|
||||||
|
Pfad zur Datenbankdatei:
|
||||||
|
DBDIR="/path/to/file.db" # Vollständigen Pfad angeben
|
||||||
|
|
||||||
|
In der Datenbankdatei die Tabelle festlegen:
|
||||||
|
DB="myTable" # Keine Sonder- oder Leerzeichen
|
||||||
|
|
||||||
|
Eigene Kategorien:
|
||||||
|
categories[0]="Default") # Standard Kategorie
|
||||||
|
categories+=("newCategory") # Hinzufügen einer Kategorie (wiederholbar)
|
||||||
|
'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -i(nsert)
|
||||||
|
function insert {
|
||||||
|
IFS= read -p "Tätigkeit? `echo $'\n> '`" TASK
|
||||||
|
IFS= read -p "Dauer? `echo $'\n> '`" WORKTIME
|
||||||
|
IFS= read -p "Endzeit? `echo $'\n> '`" ENDDATE
|
||||||
|
IFS= read -p "Kategorie? `echo $'\n> '`" CATEGORY
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -r(eport) [Ansicht...]
|
||||||
|
function report {
|
||||||
|
REPORT=$OPTARG
|
||||||
|
clear
|
||||||
|
case $REPORT in
|
||||||
|
day|daily)
|
||||||
|
dailyReport
|
||||||
|
dailyCategoryReport
|
||||||
|
;;
|
||||||
|
week|weekly)
|
||||||
|
weeklyReport
|
||||||
|
weeklyCategoryReport
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
dailyReport
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
### Standard Aufruf
|
||||||
|
function default {
|
||||||
|
checkRequirements
|
||||||
|
clear
|
||||||
|
startTracking
|
||||||
|
endTracking
|
||||||
|
calcWorktime $worktime
|
||||||
|
insertTask "$doing" "$category" "$worktime"
|
||||||
|
clear
|
||||||
|
printTask
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -s(earch) [Suchstring]
|
||||||
|
function search {
|
||||||
|
# Optionen ob damit was gemacht werden soll (Update / Löschen)
|
||||||
|
SEARCH=$OPTARG
|
||||||
|
searchByString
|
||||||
|
}
|
||||||
|
|
||||||
|
### Aufruf bei -u(pdate) [DB ID]
|
||||||
|
function update {
|
||||||
|
# Prüfung ob angaben stimmen, weitere eingaben ändern
|
||||||
|
DBID=$OPTARG
|
||||||
|
searchById
|
||||||
|
echo "
|
||||||
|
1. Datum
|
||||||
|
2. Task
|
||||||
|
3. Kategorie
|
||||||
|
4. Arbeitszeit
|
||||||
|
"
|
||||||
|
IFS= read -p "Was soll geupdatet werden? `echo $'\n> '`" UPDATETYPE
|
||||||
|
IFS= read -p "Was soll eingetragen werden? `echo $'\n> '`" UPDATEVALUE
|
||||||
|
case $UPDATETYPE in
|
||||||
|
1|Datum)
|
||||||
|
updateDate
|
||||||
|
;;
|
||||||
|
2|Task)
|
||||||
|
updateTask
|
||||||
|
;;
|
||||||
|
3|Kategorie)
|
||||||
|
updateCategory
|
||||||
|
;;
|
||||||
|
4|Arbeitszeit)
|
||||||
|
updateWorktime
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Falsche angabe"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
## Umwandlung / Umrechnung
|
||||||
|
### Rechnet die Sekunden in Stunden und Minuten um
|
||||||
|
function calcWorktime {
|
||||||
|
if [ $1 -ge 3600 ]; then
|
||||||
|
hworktime=$((worktime / 3600))
|
||||||
|
mworktime=$(((worktime % 3600) / 60))
|
||||||
|
gmworktime=$((worktime / 60))
|
||||||
|
outputtime="$gmworktime min ($hworktime:$mworktime H)"
|
||||||
|
else
|
||||||
|
gmworktime=$((worktime / 60))
|
||||||
|
outputtime="$gmworktime min"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function convertDay {
|
||||||
|
case $1 in
|
||||||
|
1)
|
||||||
|
echo "Montag"
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
echo "Dienstag"
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
echo "Mittwoch"
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
echo "Donnerstag"
|
||||||
|
;;
|
||||||
|
5)
|
||||||
|
echo "Freitag"
|
||||||
|
;;
|
||||||
|
6)
|
||||||
|
echo "Samstag"
|
||||||
|
;;
|
||||||
|
7)
|
||||||
|
echo "Sonntag"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Argumente auslesen
|
||||||
|
#===============================
|
||||||
|
while getopts "Dc:e:hH:ilr:s:Tu:" opt; do
|
||||||
|
case $opt in
|
||||||
|
D)
|
||||||
|
showDB
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
c)
|
||||||
|
config
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
e)
|
||||||
|
erase
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
h)
|
||||||
|
printHelp
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
H)
|
||||||
|
helpTo $OPTARG
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
i)
|
||||||
|
insert
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
l)
|
||||||
|
while true; do
|
||||||
|
default
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
r)
|
||||||
|
report
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
s)
|
||||||
|
search
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
T)
|
||||||
|
# Testing
|
||||||
|
results=($(sqlite3 $DBDIR "
|
||||||
|
SELECT *
|
||||||
|
FROM $DB
|
||||||
|
"))
|
||||||
|
|
||||||
|
#for i in ${!results[@]}; do
|
||||||
|
for i in "${!results[@]}"; do
|
||||||
|
echo "<================================================>"
|
||||||
|
echo "Test für: ${results[i]}"
|
||||||
|
|
||||||
|
echo "Record No. $i: ${results[$i]}"
|
||||||
|
|
||||||
|
|
||||||
|
fieldA=${results[0]};
|
||||||
|
fieldB=${results[1]};
|
||||||
|
fieldC=${results[2]};
|
||||||
|
fieldD=${results[3]};
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
echo $fieldA $fieldB $fieldC $fieldD
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
u)
|
||||||
|
update
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
default
|
||||||
Reference in New Issue
Block a user