mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	WIP because: - [x] Some calls set a `content-type` but send no body, can likely remove the header - [x] Need to check whether `charset=utf-8` has any significance on the webauthn calls, I assume not as it is the default for json content. - [x] Maybe `no-restricted-globals` is better for eslint, but will require a lot of duplication in the yaml or moving eslint config to a `.js` extension. - [x] Maybe export `request` as `fetch`, shadowing the global.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from 'jquery';
 | 
						|
import {hideElem, showElem} from '../utils/dom.js';
 | 
						|
import {GET, POST} from '../modules/fetch.js';
 | 
						|
 | 
						|
const {appSubUrl} = window.config;
 | 
						|
 | 
						|
export function initRepoMigrationStatusChecker() {
 | 
						|
  const $repoMigrating = $('#repo_migrating');
 | 
						|
  if (!$repoMigrating.length) return;
 | 
						|
 | 
						|
  $('#repo_migrating_retry').on('click', doMigrationRetry);
 | 
						|
 | 
						|
  const task = $repoMigrating.attr('data-migrating-task-id');
 | 
						|
 | 
						|
  // returns true if the refresh still need to be called after a while
 | 
						|
  const refresh = async () => {
 | 
						|
    const res = await GET(`${appSubUrl}/user/task/${task}`);
 | 
						|
    if (res.status !== 200) return true; // continue to refresh if network error occurs
 | 
						|
 | 
						|
    const data = await res.json();
 | 
						|
 | 
						|
    // for all status
 | 
						|
    if (data.message) {
 | 
						|
      $('#repo_migrating_progress_message').text(data.message);
 | 
						|
    }
 | 
						|
 | 
						|
    // TaskStatusFinished
 | 
						|
    if (data.status === 4) {
 | 
						|
      window.location.reload();
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
 | 
						|
    // TaskStatusFailed
 | 
						|
    if (data.status === 3) {
 | 
						|
      hideElem('#repo_migrating_progress');
 | 
						|
      hideElem('#repo_migrating');
 | 
						|
      showElem('#repo_migrating_retry');
 | 
						|
      showElem('#repo_migrating_failed');
 | 
						|
      showElem('#repo_migrating_failed_image');
 | 
						|
      $('#repo_migrating_failed_error').text(data.message);
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
 | 
						|
    return true; // continue to refresh
 | 
						|
  };
 | 
						|
 | 
						|
  const syncTaskStatus = async () => {
 | 
						|
    let doNextRefresh = true;
 | 
						|
    try {
 | 
						|
      doNextRefresh = await refresh();
 | 
						|
    } finally {
 | 
						|
      if (doNextRefresh) {
 | 
						|
        setTimeout(syncTaskStatus, 2000);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  };
 | 
						|
 | 
						|
  syncTaskStatus(); // no await
 | 
						|
}
 | 
						|
 | 
						|
async function doMigrationRetry(e) {
 | 
						|
  await POST($(e.target).attr('data-migrating-task-retry-url'));
 | 
						|
  window.location.reload();
 | 
						|
}
 |