CLASS zcl_abapgit_repo_online DEFINITION PUBLIC INHERITING FROM zcl_abapgit_repo FINAL CREATE PUBLIC . PUBLIC SECTION. INTERFACES zif_abapgit_git_operations . ALIASES create_branch FOR zif_abapgit_git_operations~create_branch . ALIASES push FOR zif_abapgit_git_operations~push . METHODS get_url RETURNING VALUE(rv_url) TYPE zif_abapgit_persistence=>ty_repo-url . METHODS get_selected_branch RETURNING VALUE(rv_name) TYPE zif_abapgit_persistence=>ty_repo-branch_name . METHODS set_url IMPORTING !iv_url TYPE zif_abapgit_persistence=>ty_repo-url RAISING zcx_abapgit_exception . METHODS select_branch IMPORTING !iv_branch_name TYPE zif_abapgit_persistence=>ty_repo-branch_name RAISING zcx_abapgit_exception . METHODS get_selected_commit RETURNING VALUE(rv_selected_commit) TYPE zif_abapgit_persistence=>ty_repo-selected_commit RAISING zcx_abapgit_exception . METHODS get_current_remote RETURNING VALUE(rv_sha1) TYPE zif_abapgit_definitions=>ty_sha1 RAISING zcx_abapgit_exception . METHODS select_commit IMPORTING iv_selected_commit TYPE zif_abapgit_persistence=>ty_repo-selected_commit RAISING zcx_abapgit_exception . METHODS get_objects RETURNING VALUE(rt_objects) TYPE zif_abapgit_definitions=>ty_objects_tt RAISING zcx_abapgit_exception . METHODS get_commit_display_url IMPORTING !iv_hash TYPE zif_abapgit_definitions=>ty_sha1 RETURNING VALUE(rv_url) TYPE zif_abapgit_persistence=>ty_repo-url RAISING zcx_abapgit_exception . METHODS get_default_commit_display_url IMPORTING !iv_hash TYPE zif_abapgit_definitions=>ty_sha1 RETURNING VALUE(rv_url) TYPE zif_abapgit_persistence=>ty_repo-url RAISING zcx_abapgit_exception . METHODS get_switched_origin RETURNING VALUE(rv_url) TYPE zif_abapgit_persistence=>ty_repo-switched_origin . METHODS switch_origin IMPORTING !iv_url TYPE zif_abapgit_persistence=>ty_repo-url !iv_overwrite TYPE abap_bool DEFAULT abap_false RAISING zcx_abapgit_exception . METHODS get_files_remote REDEFINITION . METHODS get_name REDEFINITION . METHODS has_remote_source REDEFINITION . METHODS rebuild_local_checksums REDEFINITION . PROTECTED SECTION. PRIVATE SECTION. DATA mt_objects TYPE zif_abapgit_definitions=>ty_objects_tt . DATA mv_current_commit TYPE zif_abapgit_definitions=>ty_sha1 . METHODS handle_stage_ignore IMPORTING !io_stage TYPE REF TO zcl_abapgit_stage RAISING zcx_abapgit_exception . METHODS set_objects IMPORTING !it_objects TYPE zif_abapgit_definitions=>ty_objects_tt RAISING zcx_abapgit_exception . METHODS fetch_remote RAISING zcx_abapgit_exception . ENDCLASS. CLASS zcl_abapgit_repo_online IMPLEMENTATION. METHOD fetch_remote. DATA: li_progress TYPE REF TO zif_abapgit_progress, ls_pull TYPE zcl_abapgit_git_porcelain=>ty_pull_result. IF mv_request_remote_refresh = abap_false. RETURN. ENDIF. li_progress = zcl_abapgit_progress=>get_instance( 1 ). li_progress->show( iv_current = 1 iv_text = 'Fetch remote files' ). IF get_selected_commit( ) IS INITIAL. ls_pull = zcl_abapgit_git_porcelain=>pull_by_branch( iv_url = get_url( ) iv_branch_name = get_selected_branch( ) ). ELSE. ls_pull = zcl_abapgit_git_porcelain=>pull_by_commit( iv_url = get_url( ) iv_commit_hash = get_selected_commit( ) ). ENDIF. set_files_remote( ls_pull-files ). set_objects( ls_pull-objects ). mv_current_commit = ls_pull-commit. ENDMETHOD. METHOD get_commit_display_url. DATA li_exit TYPE REF TO zif_abapgit_exit. rv_url = get_default_commit_display_url( iv_hash ). li_exit = zcl_abapgit_exit=>get_instance( ). li_exit->adjust_display_commit_url( EXPORTING iv_repo_url = get_url( ) iv_repo_name = get_name( ) iv_repo_key = get_key( ) iv_commit_hash = iv_hash CHANGING cv_display_url = rv_url ). IF rv_url IS INITIAL. zcx_abapgit_exception=>raise( |provider not yet supported| ). ENDIF. ENDMETHOD. METHOD get_current_remote. fetch_remote( ). rv_sha1 = mv_current_commit. ENDMETHOD. METHOD get_default_commit_display_url. DATA ls_result TYPE match_result. FIELD-SYMBOLS TYPE submatch_result. rv_url = get_url( ). FIND REGEX '^http(?:s)?:\/\/(?:www\.)?(github\.com|bitbucket\.org|gitlab\.com)\/' IN rv_url RESULTS ls_result. IF sy-subrc = 0. READ TABLE ls_result-submatches INDEX 1 ASSIGNING . CASE rv_url+-offset(-length). WHEN 'github.com'. REPLACE REGEX '\.git$' IN rv_url WITH space. rv_url = rv_url && |/commit/| && iv_hash. WHEN 'bitbucket.org'. REPLACE REGEX '\.git$' IN rv_url WITH space. rv_url = rv_url && |/commits/| && iv_hash. WHEN 'gitlab.com'. REPLACE REGEX '\.git$' IN rv_url WITH space. rv_url = rv_url && |/-/commit/| && iv_hash. ENDCASE. ENDIF. ENDMETHOD. METHOD get_files_remote. fetch_remote( ). rt_files = super->get_files_remote( ). ENDMETHOD. METHOD get_name. rv_name = super->get_name( ). IF rv_name IS INITIAL. rv_name = zcl_abapgit_url=>name( ms_data-url ). rv_name = cl_http_utility=>if_http_utility~unescape_url( rv_name ). ENDIF. ENDMETHOD. METHOD get_objects. fetch_remote( ). rt_objects = mt_objects. ENDMETHOD. METHOD get_selected_branch. rv_name = ms_data-branch_name. ENDMETHOD. METHOD get_selected_commit. rv_selected_commit = ms_data-selected_commit. ENDMETHOD. METHOD get_switched_origin. rv_url = ms_data-switched_origin. ENDMETHOD. METHOD get_url. rv_url = ms_data-url. ENDMETHOD. METHOD handle_stage_ignore. DATA: lv_add TYPE abap_bool, lo_dot_abapgit TYPE REF TO zcl_abapgit_dot_abapgit, lt_stage TYPE zif_abapgit_definitions=>ty_stage_tt. FIELD-SYMBOLS: LIKE LINE OF lt_stage. lo_dot_abapgit = get_dot_abapgit( ). lt_stage = io_stage->get_all( ). LOOP AT lt_stage ASSIGNING WHERE method = zif_abapgit_definitions=>c_method-ignore. lo_dot_abapgit->add_ignore( iv_path = -file-path iv_filename = -file-filename ). " remove it from the staging object, as the action is handled here io_stage->reset( iv_path = -file-path iv_filename = -file-filename ). lv_add = abap_true. ENDLOOP. IF lv_add = abap_true. io_stage->add( iv_path = zif_abapgit_definitions=>c_root_dir iv_filename = zif_abapgit_definitions=>c_dot_abapgit iv_data = lo_dot_abapgit->serialize( ) ). set_dot_abapgit( lo_dot_abapgit ). ENDIF. ENDMETHOD. METHOD has_remote_source. rv_yes = abap_true. ENDMETHOD. METHOD rebuild_local_checksums. " TODO: method unify to base class ! DATA: lt_remote TYPE zif_abapgit_definitions=>ty_files_tt, lt_local TYPE zif_abapgit_definitions=>ty_files_item_tt, ls_last_item TYPE zif_abapgit_definitions=>ty_item, lt_checksums TYPE zif_abapgit_persistence=>ty_local_checksum_tt. FIELD-SYMBOLS: LIKE LINE OF lt_checksums, LIKE LINE OF -files, LIKE LINE OF lt_remote, LIKE LINE OF lt_local. lt_local = get_files_local( ). DELETE lt_local " Remove non-code related files except .abapgit WHERE item IS INITIAL AND NOT ( file-path = zif_abapgit_definitions=>c_root_dir AND file-filename = zif_abapgit_definitions=>c_dot_abapgit ). SORT lt_local BY item. lt_remote = get_files_remote( ). SORT lt_remote BY path filename. LOOP AT lt_local ASSIGNING . IF ls_last_item <> -item OR sy-tabix = 1. " First or New item reached ? APPEND INITIAL LINE TO lt_checksums ASSIGNING . -item = -item. ls_last_item = -item. ENDIF. READ TABLE lt_remote ASSIGNING WITH KEY path = -file-path filename = -file-filename BINARY SEARCH. CHECK sy-subrc = 0. " Ignore new local ones APPEND INITIAL LINE TO -files ASSIGNING . MOVE-CORRESPONDING -file TO . " If hashes are equal -> local sha1 is OK " Else if R-branch is ahead -> assume changes were remote, state - local sha1 " Else (branches equal) -> assume changes were local, state - remote sha1 IF -file-sha1 <> -sha1. -sha1 = -sha1. ENDIF. ENDLOOP. set( it_checksums = lt_checksums ). reset_status( ). ENDMETHOD. METHOD select_branch. reset_remote( ). set( iv_branch_name = iv_branch_name iv_selected_commit = space ). ENDMETHOD. METHOD select_commit. reset_remote( ). set( iv_selected_commit = iv_selected_commit ). ENDMETHOD. METHOD set_objects. mt_objects = it_objects. ENDMETHOD. METHOD set_url. reset_remote( ). set( iv_url = iv_url ). ENDMETHOD. METHOD switch_origin. DATA lv_offs TYPE i. IF iv_overwrite = abap_true. " For repo settings page set( iv_switched_origin = iv_url ). RETURN. ENDIF. IF iv_url IS INITIAL. IF ms_data-switched_origin IS INITIAL. RETURN. ELSE. lv_offs = find( val = reverse( ms_data-switched_origin ) sub = '@' ). IF lv_offs = -1. zcx_abapgit_exception=>raise( 'Incorrect format of switched origin' ). ENDIF. lv_offs = strlen( ms_data-switched_origin ) - lv_offs - 1. set_url( substring( val = ms_data-switched_origin len = lv_offs ) ). select_branch( substring( val = ms_data-switched_origin off = lv_offs + 1 ) ). set( iv_switched_origin = '' ). ENDIF. ELSEIF ms_data-switched_origin IS INITIAL. set( iv_switched_origin = ms_data-url && '@' && ms_data-branch_name ). set_url( iv_url ). ELSE. zcx_abapgit_exception=>raise( 'Cannot switch origin twice' ). ENDIF. ENDMETHOD. METHOD zif_abapgit_git_operations~create_branch. DATA: lv_sha1 TYPE zif_abapgit_definitions=>ty_sha1. ASSERT iv_name CP zif_abapgit_definitions=>c_git_branch-heads. IF iv_from IS INITIAL. lv_sha1 = get_current_remote( ). ELSE. lv_sha1 = iv_from. ENDIF. zcl_abapgit_git_porcelain=>create_branch( iv_url = get_url( ) iv_name = iv_name iv_from = lv_sha1 ). " automatically switch to new branch select_branch( iv_name ). ENDMETHOD. METHOD zif_abapgit_git_operations~push. * assumption: PUSH is done on top of the currently selected branch DATA: ls_push TYPE zcl_abapgit_git_porcelain=>ty_push_result, lv_text TYPE string, lv_parent TYPE zif_abapgit_definitions=>ty_sha1. IF ms_data-branch_name CP zif_abapgit_definitions=>c_git_branch-tags. lv_text = |You're working on a tag. Currently it's not | && |possible to push on tags. Consider creating a branch instead|. zcx_abapgit_exception=>raise( lv_text ). ENDIF. IF ms_data-local_settings-block_commit = abap_true AND zcl_abapgit_factory=>get_code_inspector( get_package( ) )->is_successful( ) = abap_false. zcx_abapgit_exception=>raise( |A successful code inspection is required| ). ENDIF. handle_stage_ignore( io_stage ). IF get_selected_commit( ) IS INITIAL. lv_parent = get_current_remote( ). ELSE. lv_parent = get_selected_commit( ). ENDIF. ls_push = zcl_abapgit_git_porcelain=>push( is_comment = is_comment io_stage = io_stage iv_branch_name = get_selected_branch( ) iv_url = get_url( ) iv_parent = lv_parent it_old_objects = get_objects( ) ). set_objects( ls_push-new_objects ). set_files_remote( ls_push-new_files ). mv_current_commit = ls_push-branch. update_local_checksums( ls_push-updated_files ). reset_status( ). ENDMETHOD. ENDCLASS.