summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/taskmanager/tasks/ScpSnapshot.java
blob: 0fe0c24f4ada64bd59d7570fdfd88f72997ef144 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package org.openslx.taskmanager.tasks;

import java.util.Map;

import org.openslx.satserver.util.Constants;
import org.openslx.taskmanager.api.SystemCommandTask;

import com.google.gson.annotations.Expose;

public class ScpSnapshot extends SystemCommandTask
{
	@Expose
	private String lectureUuid = null;
	@Expose
	private String username = null;
	@Expose
	private String clientIp = null;
	@Expose
	private String snapshotPath = null;

	private final Output status = new Output();


	@Override
	protected boolean initTask()
	{
		this.setStatusObject( this.status );
		if ( this.lectureUuid == null )
			this.lectureUuid = "";
		if ( this.username == null )
			this.username = "";
		if ( this.clientIp == null )
			this.clientIp = "";
		if ( this.snapshotPath == null )
			this.snapshotPath = "";

		return true;
	}

	@Override
	protected String[] initCommandLine()
	{
		return new String[] {
				"/usr/bin/sudo",
				"-n",
				"-u", "root",
				// "/bin/bash",
				Constants.BASEDIR + "/scripts/scp-snapshot"
		};
	}

	@Override
	protected void initEnvironment( Map<String, String> environment )
	{
		environment.put( "TM_UUID", this.lectureUuid );
		environment.put( "TM_USERNAME", this.username);
		environment.put( "TM_CLIENT_IP", this.clientIp);
		environment.put( "TM_SNAPSHOT_PATH", this.snapshotPath);
	}

	@Override
	protected boolean processEnded( int exitCode )
	{
		return exitCode == 0;
	}

	@Override
	protected void processStdOut( String line )
	{
		status.addMessage( line );
	}

	@Override
	protected void processStdErr( String line )
	{
		status.addMessage( line );
	}

	/**
	 * Output - contains additional status data of this task
	 */
	class Output
	{
		private String messages = null;

		private void addMessage( String str )
		{
			if ( messages == null ) {
				messages = str;
			} else {
				messages += "\n" + str;
			}
		}
	}

}