-
-
Notifications
You must be signed in to change notification settings - Fork 550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XWIKI-22481: Add the ability to use a LibreOffice binary from another server #3610
base: master
Are you sure you want to change the base?
Conversation
… server. * Fix checkstyle issue.
*/ | ||
default String getWorkDir() | ||
{ | ||
return null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not ideal, but I did not want to break the stable interface. The failover is implemented by the component that call getWorkDir()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to use Optional<String>
as the return value, see https://dev.xwiki.org/xwiki/bin/view/Community/CodeStyle/JavaCodeStyle/#HOptional
@@ -350,6 +350,10 @@ rendering.transformations = $xwikiRenderingTransformations | |||
#-# 1 - Externally managed (local) server instance. | |||
# openoffice.serverType = 0 | |||
|
|||
#-# [Since 16.10RC1] | |||
#-# Hostname used for connecting to the openoffice server instance. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing the explanation about what is the default value if not specified.
@@ -371,6 +375,11 @@ rendering.transformations = $xwikiRenderingTransformations | |||
#-# If no path is provided, a default value will be calculated based on the operating environment. | |||
# openoffice.profilePath = /home/user/.openoffice.org/3 | |||
|
|||
#-# [Since 16.10RC1] | |||
#-# Path to a folder where XWiki could exchange temporary files with the openoffice server. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/could/will ?
@@ -137,6 +138,7 @@ public void initialize() throws OfficeServerException | |||
ExternalOfficeManager.Builder externalProcessOfficeManager = ExternalOfficeManager.builder(); | |||
externalProcessOfficeManager.portNumbers(this.config.getServerPorts()); | |||
externalProcessOfficeManager.connectOnStart(true); | |||
externalProcessOfficeManager.hostName(config.getServerHost()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we sure that 127.0.0.1
is the default? (vs localhost
for example).
Another option is to set the a host only if not empty in the XWiki config.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I confirm that 127.0.0.1
is the default -> https://github.com/jodconverter/jodconverter/blob/master/jodconverter-local/src/main/java/org/jodconverter/local/office/ExternalOfficeManager.java#L60
...office-importer/src/main/java/org/xwiki/officeimporter/server/OfficeServerConfiguration.java
Show resolved
Hide resolved
...office-importer/src/main/java/org/xwiki/officeimporter/server/OfficeServerConfiguration.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/xwiki/officeimporter/internal/server/DefaultOfficeServerConfiguration.java
Outdated
Show resolved
Hide resolved
...ice-importer/src/main/java/org/xwiki/officeimporter/internal/server/DefaultOfficeServer.java
Outdated
Show resolved
Hide resolved
...orm-tools/xwiki-platform-tool-configuration-resources/src/main/resources/xwiki.properties.vm
Outdated
Show resolved
Hide resolved
...orm-tools/xwiki-platform-tool-configuration-resources/src/main/resources/xwiki.properties.vm
Outdated
Show resolved
Hide resolved
...orm-tools/xwiki-platform-tool-configuration-resources/src/main/resources/xwiki.properties.vm
Outdated
Show resolved
Hide resolved
Thank you for all your comments! It was definitively needed! |
… server. * Use Optional<String> instead of plain String in OfficeServerConfiguration#getWorkDir(). * Improve the comments in xwiki.properties.
I have pushed my changes, thanks! |
@gdelhumeau I don't think I've seen any update to the Admin UI at http://localhost:8080/xwiki/bin/admin/XWiki/XWikiPreferences?editor=globaladmin§ion=XWiki.OfficeImporterAdmin Isn't that required? For example to display the server host used. Thanks |
Also we already have this config:
I'm not sure how it interacts with your change. On one hand, a value of 1 is what you're doing since it's externally managed, but OTOH it's not a local server instance. Does it mean that right now we can use your new config property AND keep Thx |
These changes only apply when Actually we have a constant |
… server. * Handle the SERVER_TYPE_EXTERNAL_REMOTE use-case. * Update OfficeImporterAdmin.
@vmassol @surli Did you have the chance to take a look? Do you want a proper proposal on the forum? Maybe you were expecting a proper "remote" behavior where we wouldn't have to share any drive but I don't have the time to implement this and I think what I'm proposing is already an improvement (at least it fixes the problem I have with my Docker/Kubernetes use-case). |
* Default host name of the office server instance. | ||
* Coming from org.jodconverter.local.office.ExternalOfficeManager.DEFAULT_HOSTNAME | ||
* @since 16.10.0RC1 | ||
* @since 16.4.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 16.4.6 (as used below).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And that's also Unstable
<dt><label>$escapetool.html($services.localization.render('xe.officeimporter.openoffice.workdir'))</label></dt> | ||
<dd>$escapetool.html($services.officemanager.config.workDir.get())</dd> | ||
#end | ||
### |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm wondering if it's useful to always display that information. Looks a bit technical and more for debug purposes. Let's leave it like this for now but we may want to only display it for advanced users or when in debug mode (debug = true in the query string for example).
### | ||
#if ($services.officemanager.config.serverType == 2) | ||
<dt> | ||
<label>$escapetool.html($services.localization.render('xe.officeimporter.openoffice.serverhost'))</label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm this is using old translation key format, I think we need to fix this. See https://dev.xwiki.org/xwiki/bin/view/Community/DevelopmentPractices#HTranslationPropertyNaming
### Work directory | ||
### | ||
#if ($services.officemanager.config.workDir.isPresent()) | ||
<dt><label>$escapetool.html($services.localization.render('xe.officeimporter.openoffice.workdir'))</label></dt> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same comment re translation key format
@@ -348,8 +348,15 @@ rendering.transformations = $xwikiRenderingTransformations | |||
#-# Type of the openoffice server instance used by officeimporter component. | |||
#-# 0 - Internally managed server instance. (Default) | |||
#-# 1 - Externally managed (local) server instance. | |||
#-# 2 - Externally managed (remotely) server instance. (Since 16.10.0RC1, 16.4.6) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/remotely/remote
#-# [Since 16.4.6] | ||
#-# Path to a folder where XWiki will exchange temporary files with the openoffice server. | ||
#-# If no path is provided, the temporary folder set for XWiki will be used. | ||
#-# If openoffice.serverType = 2, this folder should be a shared volume between the two servers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should or must?
Thanks @gdelhumeau . The PR looks good to me, just some small details I've commented about. @surli ok for you? |
yes sounds good to me |
Jira URL
https://jira.xwiki.org/browse/XWIKI-22481
Changes
Description
I have introduced 2 new properties in xwiki.properties:
openoffice.host
to set the hostname of the openoffice server (in case it not reachable at "localhost")openoffice.workDir
to set the folder where the files are exchanged, temporary, between XWiki and the openoffice server (same: useful in a kubernetes environment where we need to mount a common volume between the 2 containers).Clarifications
I have not made commit on xwiki-platform for a while, so I prefer asking for a quick confirmation before merging. Thank you!
I have not built on the current master branch, but it built successfully against the 16.4.4 tag.