طلب ملف مشترك

عندما يريد تطبيق الوصول إلى ملف شاركه تطبيق آخر، يُرسِل التطبيق المُرسِل للطلب (العميل) عادةً طلبًا إلى التطبيق الذي يشارك الملفات (الخادم). في معظم الحالات، يؤدي الطلب إلى بدء Activity في تطبيق الخادم الذي يعرض الملفات التي يمكنه مشاركتها. يختار المستخدم ملفًا، ويعرض بعد ذلك تطبيق الخادم معرِّف الموارد المنتظم (URI) الخاص بمحتوى الملف إلى تطبيق العميل.

يوضّح هذا الدرس كيف يطلب تطبيق عميل ملفًا من تطبيق خادم ويتلقّى معرِّف الموارد المنتظم (URI) الخاص بمحتوى الملف من تطبيق الخادم ويفتح الملف باستخدام معرّف الموارد المنتظم (URI) للمحتوى.

إرسال طلب للحصول على الملف

لطلب ملف من تطبيق الخادم، يستدعي التطبيق العميل startActivityForResult مع Intent يحتوي على الإجراء، مثل ACTION_PICK، ونوع MIME يمكن لتطبيق العميل التعامل معه.

على سبيل المثال، يوضّح مقتطف الرمز التالي كيفية إرسال Intent إلى تطبيق خادم لبدء Activity الموضّح في مقالة مشاركة ملف:

Kotlin

class MainActivity : Activity() {
    private lateinit var requestFileIntent: Intent
    private lateinit var inputPFD: ParcelFileDescriptor
    ...
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        requestFileIntent = Intent(Intent.ACTION_PICK).apply {
            type = "image/jpg"
        }
        ...
    }
    ...
    private fun requestFile() {
        /**
         * When the user requests a file, send an Intent to the
         * server app.
         * files.
         */
        startActivityForResult(requestFileIntent, 0)
        ...
    }
    ...
}

Java

public class MainActivity extends Activity {
    private Intent requestFileIntent;
    private ParcelFileDescriptor inputPFD;
    ...
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        requestFileIntent = new Intent(Intent.ACTION_PICK);
        requestFileIntent.setType("image/jpg");
        ...
    }
    ...
    protected void requestFile() {
        /**
         * When the user requests a file, send an Intent to the
         * server app.
         * files.
         */
            startActivityForResult(requestFileIntent, 0);
        ...
    }
    ...
}

الوصول إلى الملف المطلوب

يُرسِل تطبيق الخادم معرّف الموارد المنتظم (URI) الخاص بمحتوى الملف إلى تطبيق العميل في Intent. يتم تمرير هذا Intent إلى العميل تطبيق في إلغاء onActivityResult(). بعد أن يحصل تطبيق العميل على معرّف الموارد المتسلسل لمحتوى الملف، يمكنه الوصول إلى الملف من خلال الحصول على FileDescriptor.

لا يتم الحفاظ على أمان الملف في هذه العملية إلا ما دامت عملية تحليل معرّف الموارد المنتظم للمحتوى الذي يتلقّاه تطبيق العميل صحيحة. عند تحليل المحتوى، عليك التأكّد من أنّ عنوان URI هذا لا يشير إلى أي بيانات خارج الدليل المقصود، ما يضمن عدم محاولة اجتياز المسار. يجب أن يحصل تطبيق العميل فقط على إذن الوصول إلى الملف، وللأذونات التي يمنحها تطبيق الخادم فقط. الأذونات مؤقتة، ولذلك بعد انتهاء حزمة المهام الخاصة بتطبيق العميل، لن يمكن الوصول إلى الملف من خارج التطبيق على الخادم.

يوضّح المقتطف التالي كيفية تعامل تطبيق العميل مع Intent المُرسَل من تطبيق الخادم، وكيفية حصول تطبيق العميل على FileDescriptor باستخدام عنوان URL للمحتوى:

Kotlin

/*
 * When the Activity of the app that hosts files sets a result and calls
 * finish(), this method is invoked. The returned Intent contains the
 * content URI of a selected file. The result code indicates if the
 * selection worked or not.
 */
public override fun onActivityResult(requestCode: Int, resultCode: Int, returnIntent: Intent) {
    // If the selection didn't work
    if (resultCode != Activity.RESULT_OK) {
        // Exit without doing anything else
        return
    }
    // Get the file's content URI from the incoming Intent
    returnIntent.data?.also { returnUri ->
        /*
         * Try to open the file for "read" access using the
         * returned URI. If the file isn't found, write to the
         * error log and return.
         */
        inputPFD = try {
            /*
             * Get the content resolver instance for this context, and use it
             * to get a ParcelFileDescriptor for the file.
             */
            contentResolver.openFileDescriptor(returnUri, "r")
        } catch (e: FileNotFoundException) {
            e.printStackTrace()
            Log.e("MainActivity", "File not found.")
            return
        }

        // Get a regular file descriptor for the file
        val fd = inputPFD.fileDescriptor
        ...
    }
}

Java

    /*
     * When the Activity of the app that hosts files sets a result and calls
     * finish(), this method is invoked. The returned Intent contains the
     * content URI of a selected file. The result code indicates if the
     * selection worked or not.
     */
    @Override
    public void onActivityResult(int requestCode, int resultCode,
            Intent returnIntent) {
        // If the selection didn't work
        if (resultCode != RESULT_OK) {
            // Exit without doing anything else
            return;
        } else {
            // Get the file's content URI from the incoming Intent
            Uri returnUri = returnIntent.getData();
            /*
             * Try to open the file for "read" access using the
             * returned URI. If the file isn't found, write to the
             * error log and return.
             */
            try {
                /*
                 * Get the content resolver instance for this context, and use it
                 * to get a ParcelFileDescriptor for the file.
                 */
                inputPFD = getContentResolver().openFileDescriptor(returnUri, "r");
            } catch (FileNotFoundException e) {
                e.printStackTrace();
                Log.e("MainActivity", "File not found.");
                return;
            }
            // Get a regular file descriptor for the file
            FileDescriptor fd = inputPFD.getFileDescriptor();
            ...
        }
    }

تُرجع الطريقة openFileDescriptor() ParcelFileDescriptor للملف. من هذا الكائن، يحصل العميل تطبيق على كائن FileDescriptor، والذي يمكنه استخدامه بعد ذلك لقراءة الملف.

لمزيد من المعلومات ذات الصلة، راجع: