---
- block: 
    - name: Remove the old sharelatex-connector files
      file: path={{ smartgears_instance_path }}/webapps/{{ sharelatex_connector_name }} state=absent

  become: True
  become_user: '{{ d4science_user }}'
  when: ( not sharelatex_connector_install ) or ( smartgears_upgrade ) 
  tags: [ 'smartgears', 'sharelatex_connector', 'tomcat' ]
  
- block:
    # NOTE: Install as the smartgears user so we do not mess with the permissions
    - name: Get the sharelatex-connector war
      maven_artifact: artifact_id={{ sharelatex_connector_name }} version={{ sharelatex_connector_version | default(omit) }} group_id={{ sharelatex_connector_group_id }} extension={{ sharelatex_connector_extension | default('war') }} repository_url={{ sharelatex_connector_repository_url }} dest={{ smartgears_user_home }}/{{ sharelatex_connector_file }}
  
    - name: Create the data trasfer working directory
      file: path={{ smartgears_instance_path }}/webapps/{{ sharelatex_connector_name }} state=directory owner={{ smartgears_user }} group={{ smartgears_user }}
  
    - name: Unarchive the sharelatex_connector war
      unarchive: copy=no src={{ smartgears_user_home }}/{{ sharelatex_connector_file }} dest={{ smartgears_instance_path }}/webapps/{{ sharelatex_connector_name }} creates={{ smartgears_instance_path }}/webapps/{{ sharelatex_connector_name }}/WEB-INF/lib
      notify: Restart smartgears

    - name: Set the sharelatex-connector properties
      template: src=sharelatex-web.xml.j2 dest={{ smartgears_instance_path }}/webapps/{{ sharelatex_connector_name }}/WEB-INF/web.xml

  become: True
  become_user: '{{ d4science_user }}'
  when: sharelatex_connector_install 
  tags: [ 'smartgears', 'sharelatex_connector', 'tomcat' ]