32
32
33
33
use OCA \Cloud_Py_API \Db \SettingMapper ;
34
34
use OCP \AppFramework \Db \DoesNotExistException ;
35
+ use OCP \ITempManager ;
35
36
36
37
class PythonService {
37
- /** @var string */
38
- private $ pythonCommand ;
39
-
40
- /** @var string */
41
- private $ ncInstanceId ;
42
-
43
- /** @var string */
44
- private $ ncDataFolder ;
45
-
46
- /** @var UtilsService */
47
- private $ utils ;
38
+ private string $ pythonCommand ;
39
+ private string $ ncInstanceId ;
40
+ private string $ ncDataFolder ;
41
+ private bool $ isObjectStorage ;
48
42
49
43
public function __construct (
50
- IConfig $ config ,
44
+ private readonly IConfig $ config ,
51
45
SettingMapper $ settingMapper ,
52
- UtilsService $ utils
46
+ private readonly UtilsService $ utils ,
47
+ private readonly ITempManager $ tempManager ,
53
48
) {
54
49
try {
55
50
$ pythonCommand = $ settingMapper ->findByName ('python_command ' );
56
51
$ this ->pythonCommand = $ pythonCommand ->getValue ();
57
52
} catch (DoesNotExistException $ e ) {
58
53
$ this ->pythonCommand = '/usr/bin/python3 ' ;
59
54
}
60
- $ this ->utils = $ utils ;
61
- $ this ->ncInstanceId = $ config ->getSystemValue ('instanceid ' );
62
- $ this ->ncDataFolder = $ config ->getSystemValue ('datadirectory ' ) ;
55
+ $ this ->ncInstanceId = $ this -> config -> getSystemValue ( ' instanceid ' ) ;
56
+ $ this ->ncDataFolder = $ this -> config ->getSystemValue ('datadirectory ' );
57
+ $ this ->isObjectStorage = $ this -> config ->getSystemValue ('objectstore ' , null ) !== null ;
63
58
}
64
59
65
60
/**
@@ -84,10 +79,14 @@ public function run(
84
79
array $ scriptParams = [],
85
80
bool $ nonBlocking = false ,
86
81
array $ env = [],
87
- bool $ binary = false
82
+ bool $ binary = false ,
88
83
) {
89
84
if ($ binary ) {
90
- $ cwd = $ this ->ncDataFolder . '/appdata_ ' . $ this ->ncInstanceId . '/ ' . $ appId . '/ ' ;
85
+ if ($ this ->isObjectStorage ) {
86
+ $ cwd = '' ; // scriptName should already include absolute path (/tmp/...)
87
+ } else {
88
+ $ cwd = $ this ->ncDataFolder . '/appdata_ ' . $ this ->ncInstanceId . '/ ' . $ appId . '/ ' ;
89
+ }
91
90
} else {
92
91
$ cwd = $ this ->utils ->getCustomAppsDirectory () . $ appId . '/ ' ;
93
92
}
@@ -111,7 +110,15 @@ public function run(
111
110
}
112
111
if ($ nonBlocking ) {
113
112
if ($ binary ) {
114
- $ logFile = $ cwd . 'logs/ ' . date ('d-m-Y_H-i-s ' , time ()) . '.log ' ;
113
+ if (!$ this ->isObjectStorage ) {
114
+ $ logFile = $ cwd . 'logs/ ' . date ('d-m-Y_H-i-s ' , time ()) . '.log ' ;
115
+ } else {
116
+ $ tempLogsDir = $ this ->tempManager ->getTempBaseDir () . '/ ' . $ appId . '/logs/ ' ;
117
+ if (!file_exists ($ tempLogsDir )) {
118
+ mkdir ($ tempLogsDir , 0700 , true );
119
+ }
120
+ $ logFile = $ tempLogsDir . $ appId . '_ ' . date ('d-m-Y_H-i-s ' , time ()) . '.log ' ;
121
+ }
115
122
} else {
116
123
$ appDataDir = $ this ->ncDataFolder . '/appdata_ ' . $ this ->ncInstanceId . '/ ' . $ appId . '/ ' ;
117
124
$ pyBitecodeEnvVar = 'PYTHONBYTECODEBASE=" ' . $ appDataDir . '" ' ;
0 commit comments