แนวทางปฏิบัติที่ดีที่สุดสำหรับการเปิดเผยตารางหลายตารางโดยใช้ผู้ให้บริการเนื้อหาใน Android


90

ฉันกำลังสร้างแอปที่มีโต๊ะสำหรับงานอีเวนต์และโต๊ะสำหรับสถานที่ต่างๆ ฉันต้องการอนุญาตให้แอปพลิเคชันอื่นเข้าถึงข้อมูลนี้ได้ ฉันมีคำถามสองสามข้อเกี่ยวกับแนวทางปฏิบัติที่ดีที่สุดสำหรับปัญหาประเภทนี้

  1. ฉันควรจัดโครงสร้างคลาสฐานข้อมูลอย่างไร ขณะนี้ฉันมีคลาสสำหรับ EventsDbAdapter และ VenuesDbAdapter ซึ่งให้ตรรกะสำหรับการสืบค้นแต่ละตารางในขณะที่มี DbManager แยกต่างหาก (ขยาย SQLiteOpenHelper) สำหรับจัดการเวอร์ชันฐานข้อมูลสร้าง / อัปเกรดฐานข้อมูลให้การเข้าถึงฐานข้อมูล (getWriteable / ReadeableDatabase) นี่เป็นวิธีแก้ปัญหาที่แนะนำหรือฉันจะดีกว่าถ้ารวมทุกอย่างไว้ในคลาสเดียว (เช่น DbManager) หรือแยกทุกอย่างแล้วปล่อยให้ Adapter แต่ละตัวขยาย SQLiteOpenHelper

  2. ฉันจะออกแบบผู้ให้บริการเนื้อหาสำหรับหลาย ๆ ตารางได้อย่างไร ขยายคำถามก่อนหน้านี้ฉันควรใช้ผู้ให้บริการเนื้อหารายเดียวสำหรับทั้งแอปหรือควรสร้างผู้ให้บริการแยกต่างหากสำหรับกิจกรรมและสถานที่

ตัวอย่างส่วนใหญ่ฉันพบเฉพาะแอปตารางเดียวดังนั้นฉันจะขอบคุณคำแนะนำใด ๆ ที่นี่

คำตอบ:


114

อาจจะสายไปหน่อยสำหรับคุณ แต่คนอื่น ๆ อาจพบว่าสิ่งนี้มีประโยชน์

ก่อนอื่นคุณต้องสร้าง CONTENT_URI หลายรายการ

public static final Uri CONTENT_URI1 = 
    Uri.parse("content://"+ PROVIDER_NAME + "/sampleuri1");
public static final Uri CONTENT_URI2 = 
    Uri.parse("content://"+ PROVIDER_NAME + "/sampleuri2");

จากนั้นคุณขยาย URI Matcher ของคุณ

private static final UriMatcher uriMatcher;
static {
    uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
    uriMatcher.addURI(PROVIDER_NAME, "sampleuri1", SAMPLE1);
    uriMatcher.addURI(PROVIDER_NAME, "sampleuri1/#", SAMPLE1_ID);      
    uriMatcher.addURI(PROVIDER_NAME, "sampleuri2", SAMPLE2);
    uriMatcher.addURI(PROVIDER_NAME, "sampleuri2/#", SAMPLE2_ID);      
}

จากนั้นสร้างตารางของคุณ

private static final String DATABASE_NAME = "sample.db";
private static final String DATABASE_TABLE1 = "sample1";
private static final String DATABASE_TABLE2 = "sample2";
private static final int DATABASE_VERSION = 1;
private static final String DATABASE_CREATE1 =
    "CREATE TABLE IF NOT EXISTS " + DATABASE_TABLE1 + 
    " (" + _ID1 + " INTEGER PRIMARY KEY AUTOINCREMENT," + 
    "data text, stuff text);";
private static final String DATABASE_CREATE2 =
    "CREATE TABLE IF NOT EXISTS " + DATABASE_TABLE2 + 
    " (" + _ID2 + " INTEGER PRIMARY KEY AUTOINCREMENT," + 
    "data text, stuff text);";

อย่าลืมใส่วินาทีDATABASE_CREATEที่onCreate()

คุณจะใช้บล็อกสวิตช์เคสเพื่อพิจารณาว่าจะใช้ตารางอะไร นี่คือรหัสแทรกของฉัน

@Override
public Uri insert(Uri uri, ContentValues values) {
    Uri _uri = null;
    switch (uriMatcher.match(uri)){
    case SAMPLE1:
        long _ID1 = db.insert(DATABASE_TABLE1, "", values);
        //---if added successfully---
        if (_ID1 > 0) {
            _uri = ContentUris.withAppendedId(CONTENT_URI1, _ID1);
            getContext().getContentResolver().notifyChange(_uri, null);    
        }
        break;
    case SAMPLE2:
        long _ID2 = db.insert(DATABASE_TABLE2, "", values);
        //---if added successfully---
        if (_ID2 > 0) {
            _uri = ContentUris.withAppendedId(CONTENT_URI2, _ID2);
            getContext().getContentResolver().notifyChange(_uri, null);    
        }
        break;
    default: throw new SQLException("Failed to insert row into " + uri);
    }
    return _uri;                
}

คุณจะต้องแบ่งขึ้นdelete, update, getTypeฯลฯ เมื่อใดก็ตามที่โทรให้บริการของคุณสำหรับ DATABASE_TABLE หรือ CONTENT_URI คุณจะเพิ่มกรณีและมี DATABASE_TABLE1 หรือ CONTENT_URI1 ในหนึ่งและ # 2 ในครั้งต่อไปและอื่น ๆ ให้มากที่สุดเท่าที่คุณต้องการ


1
ขอบคุณสำหรับคำตอบนี่ใกล้เคียงกับวิธีแก้ปัญหาที่ฉันใช้ ฉันพบว่าผู้ให้บริการที่ซับซ้อนซึ่งทำงานกับหลาย ๆ ตารางได้รับข้อความสลับจำนวนมากซึ่งดูเหมือนจะไม่สวยหรู แต่ฉันเข้าใจว่านั่นเป็นวิธีที่คนส่วนใหญ่ทำ
Gunnar Lium

alertChange ควรจะใช้ _uri ไม่ใช่ uri ดั้งเดิมหรือไม่?
ช่วง

18
นี่เป็นมาตรฐานที่ยอมรับกับ Android หรือไม่ เห็นได้ชัดว่าใช้งานได้ แต่ดูเหมือนจะ "งุ่มง่าม" เล็กน้อย
prolink007

สามารถใช้คำสั่ง switch เป็นเราเตอร์ประเภทต่างๆได้เสมอ จากนั้นระบุวิธีการแยกกันเพื่อให้บริการทรัพยากรแต่ละรายการ query, queryUsers, queryUser, queryGroups, queryGroup นี่คือวิธีที่ตัวอยู่ในรายชื่อผู้ให้บริการไม่ได้ com.android.providers.contacts.ContactsProvider2.java github.com/android/platform_packages_providers_contactsprovider/…
Alex

2
เนื่องจากคำถามขอคำแนะนำสำหรับการออกแบบคลาสฐานข้อมูลแนวทางปฏิบัติที่ดีที่สุดฉันจะเพิ่มว่าควรกำหนดตารางในคลาสของตนเองโดยสมาชิกระดับรัฐจะเปิดเผยแอตทริบิวต์เช่นชื่อตารางและคอลัมน์
มม.

10

ฉันขอแนะนำให้ตรวจสอบซอร์สโค้ดสำหรับ Android 2.x ContactProvider (ซึ่งสามารถพบได้ทั่วไป). พวกเขาจัดการการสืบค้นข้ามตารางโดยการให้มุมมองพิเศษที่คุณเรียกใช้แบบสอบถามที่ส่วนหลัง ในส่วนหน้าผู้โทรสามารถเข้าถึงได้ผ่าน URI ต่างๆผ่านผู้ให้บริการเนื้อหารายเดียว คุณอาจต้องการจัดเตรียมคลาสหนึ่งหรือสองคลาสเพื่อเก็บค่าคงที่สำหรับชื่อฟิลด์ตารางและสตริง URI ของคุณ คลาสเหล่านี้สามารถจัดให้เป็น API รวมหรือเป็นคลาสลดลงและจะทำให้แอปพลิเคชันที่ใช้งานใช้งานง่ายขึ้นมาก

ค่อนข้างซับซ้อนดังนั้นคุณอาจต้องการตรวจสอบวิธีการใช้ปฏิทินเพื่อให้ทราบว่าคุณทำอะไรและไม่ต้องการอะไร

คุณควรต้องใช้อะแดปเตอร์ DB เดียวและผู้ให้บริการเนื้อหาเดียวต่อฐานข้อมูล (ไม่ใช่ต่อตาราง) เพื่อทำงานส่วนใหญ่ แต่คุณสามารถใช้อะแด็ปเตอร์ / ผู้ให้บริการหลายตัวได้หากคุณต้องการจริงๆ มันทำให้สิ่งต่างๆซับซ้อนขึ้นเล็กน้อย


5
com.android.providers.contacts.ContactsProvider2.java github.com/android/platform_packages_providers_contactsprovider/…
อเล็กซ์

@Marloke ขอบคุณ ตกลงผมเข้าใจว่าแม้ทีมงาน Android ใช้switchวิธีการแก้ปัญหา They handle cross table queries by providing specialized views that you then run queries against on the back end. On the front end they are accessible to the caller via various different URIs through a single content providerแต่ในส่วนนี้คุณกล่าวถึง: คุณคิดว่าคุณสามารถอธิบายรายละเอียดเพิ่มเติมเล็กน้อยได้หรือไม่?
วน

7

หนึ่ง ContentProviderสามารถให้บริการได้หลายโต๊ะ แต่ควรจะเกี่ยวข้องกันบ้าง มันจะสร้างความแตกต่างหากคุณตั้งใจจะซิงค์ผู้ให้บริการของคุณ หากคุณต้องการซิงค์แยกกันสมมติว่าผู้ติดต่อเมลหรือปฏิทินคุณจะต้องมีผู้ให้บริการที่แตกต่างกันสำหรับแต่ละรายแม้ว่าพวกเขาจะอยู่ในฐานข้อมูลเดียวกันหรือซิงค์กับบริการเดียวกันก็ตามเนื่องจากอะแดปเตอร์การซิงค์เชื่อมโยงโดยตรงกับ ผู้ให้บริการเฉพาะ

เท่าที่ฉันสามารถบอกได้คุณสามารถใช้ SQLiteOpenHelper เพียงตัวเดียวต่อฐานข้อมูลเนื่องจากจะเก็บข้อมูลเมตาไว้ในตารางภายในฐานข้อมูล ดังนั้นหากคุณContentProvidersเข้าถึงฐานข้อมูลเดียวกันคุณจะต้องแชร์ Helper ด้วยวิธีใดวิธีหนึ่ง


7

หมายเหตุ: นี่เป็นการชี้แจง / แก้ไขคำตอบที่ Opy ให้ไว้

วิธีการนี้จะแบ่งแต่ละinsert, delete, updateและgetTypeวิธีการที่มีสวิทช์งบเพื่อจัดการแต่ละตารางของแต่ละบุคคล คุณจะใช้กรณีเพื่อระบุแต่ละตาราง (หรือ uri) ที่จะอ้างอิง จากนั้นแต่ละกรณีจะจับคู่กับตารางหรือ URI ของคุณ เช่นTABLE1หรือURI1ถูกเลือกใน CASE # 1 เป็นต้นสำหรับตารางทั้งหมดที่แอปของคุณใช้

นี่คือตัวอย่างของแนวทาง นี่คือวิธีการแทรก มีการใช้งานที่แตกต่างจาก Opy เล็กน้อย แต่ทำหน้าที่เหมือนกัน คุณสามารถเลือกสไตล์ที่คุณต้องการ ฉันยังต้องการให้แน่ใจว่าการแทรกจะส่งคืนค่าแม้ว่าการแทรกตารางจะล้มเหลว ในกรณีนั้นจะส่งกลับไฟล์-1.

  @Override
  public Uri insert(Uri uri, ContentValues values) {
    int uriType = sURIMatcher.match(uri);
    SQLiteDatabase sqlDB; 

    long id = 0;
    switch (uriType){ 
        case TABLE1: 
            sqlDB = Table1Database.getWritableDatabase();
            id = sqlDB.insert(Table1.TABLE_NAME, null, values); 
            getContext().getContentResolver().notifyChange(uri, null);
            return Uri.parse(BASE_PATH1 + "/" + id);
        case TABLE2: 
            sqlDB = Table2Database.getWritableDatabase();
            id = sqlDB.insert(Table2.TABLE_NAME, null, values); 
            getContext().getContentResolver().notifyChange(uri, null);
            return Uri.parse(BASE_PATH2 + "/" + id);
        default: 
            throw new SQLException("Failed to insert row into " + uri); 
            return -1;
    }       
  }  // [END insert]

3

ฉันพบการสาธิตและคำอธิบายที่ดีที่สุดสำหรับContentProviderและฉันคิดว่ามันเป็นไปตามมาตรฐาน Android

คลาสสัญญา

 /**
   * The Content Authority is a name for the entire content provider, similar to the relationship
   * between a domain name and its website. A convenient string to use for content authority is
   * the package name for the app, since it is guaranteed to be unique on the device.
   */
  public static final String CONTENT_AUTHORITY = "com.androidessence.moviedatabase";

  /**
   * The content authority is used to create the base of all URIs which apps will use to
   * contact this content provider.
   */
  private static final Uri BASE_CONTENT_URI = Uri.parse("content://" + CONTENT_AUTHORITY);

  /**
   * A list of possible paths that will be appended to the base URI for each of the different
   * tables.
   */
  public static final String PATH_MOVIE = "movie";
  public static final String PATH_GENRE = "genre";

และชั้นใน:

 /**
   * Create one class for each table that handles all information regarding the table schema and
   * the URIs related to it.
   */
  public static final class MovieEntry implements BaseColumns {
      // Content URI represents the base location for the table
      public static final Uri CONTENT_URI =
              BASE_CONTENT_URI.buildUpon().appendPath(PATH_MOVIE).build();

      // These are special type prefixes that specify if a URI returns a list or a specific item
      public static final String CONTENT_TYPE =
              "vnd.android.cursor.dir/" + CONTENT_URI  + "/" + PATH_MOVIE;
      public static final String CONTENT_ITEM_TYPE =
              "vnd.android.cursor.item/" + CONTENT_URI + "/" + PATH_MOVIE;

      // Define the table schema
      public static final String TABLE_NAME = "movieTable";
      public static final String COLUMN_NAME = "movieName";
      public static final String COLUMN_RELEASE_DATE = "movieReleaseDate";
      public static final String COLUMN_GENRE = "movieGenre";

      // Define a function to build a URI to find a specific movie by it's identifier
      public static Uri buildMovieUri(long id){
          return ContentUris.withAppendedId(CONTENT_URI, id);
      }
  }

  public static final class GenreEntry implements BaseColumns{
      public static final Uri CONTENT_URI =
              BASE_CONTENT_URI.buildUpon().appendPath(PATH_GENRE).build();

      public static final String CONTENT_TYPE =
              "vnd.android.cursor.dir/" + CONTENT_URI + "/" + PATH_GENRE;
      public static final String CONTENT_ITEM_TYPE =
              "vnd.android.cursor.item/" + CONTENT_URI + "/" + PATH_GENRE;

      public static final String TABLE_NAME = "genreTable";
      public static final String COLUMN_NAME = "genreName";

      public static Uri buildGenreUri(long id){
          return ContentUris.withAppendedId(CONTENT_URI, id);
      }
  }

ตอนนี้กำลังสร้างฐานข้อมูลโดยใช้SQLiteOpenHelper :

public class MovieDBHelper extends SQLiteOpenHelper{
    /**
     * Defines the database version. This variable must be incremented in order for onUpdate to
     * be called when necessary.
     */
    private static final int DATABASE_VERSION = 1;
    /**
     * The name of the database on the device.
     */
    private static final String DATABASE_NAME = "movieList.db";

    /**
     * Default constructor.
     * @param context The application context using this database.
     */
    public MovieDBHelper(Context context){
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }

    /**
     * Called when the database is first created.
     * @param db The database being created, which all SQL statements will be executed on.
     */
    @Override
    public void onCreate(SQLiteDatabase db) {
        addGenreTable(db);
        addMovieTable(db);
    }

    /**
     * Called whenever DATABASE_VERSION is incremented. This is used whenever schema changes need
     * to be made or new tables are added.
     * @param db The database being updated.
     * @param oldVersion The previous version of the database. Used to determine whether or not
     *                   certain updates should be run.
     * @param newVersion The new version of the database.
     */
    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

    }

    /**
     * Inserts the genre table into the database.
     * @param db The SQLiteDatabase the table is being inserted into.
     */
    private void addGenreTable(SQLiteDatabase db){
        db.execSQL(
                "CREATE TABLE " + MovieContract.GenreEntry.TABLE_NAME + " (" +
                        MovieContract.GenreEntry._ID + " INTEGER PRIMARY KEY, " +
                        MovieContract.GenreEntry.COLUMN_NAME + " TEXT UNIQUE NOT NULL);"
        );
    }

    /**
     * Inserts the movie table into the database.
     * @param db The SQLiteDatabase the table is being inserted into.
     */
    private void addMovieTable(SQLiteDatabase db){
        db.execSQL(
                "CREATE TABLE " + MovieContract.MovieEntry.TABLE_NAME + " (" +
                        MovieContract.MovieEntry._ID + " INTEGER PRIMARY KEY, " +
                        MovieContract.MovieEntry.COLUMN_NAME + " TEXT NOT NULL, " +
                        MovieContract.MovieEntry.COLUMN_RELEASE_DATE + " TEXT NOT NULL, " +
                        MovieContract.MovieEntry.COLUMN_GENRE + " INTEGER NOT NULL, " +
                        "FOREIGN KEY (" + MovieContract.MovieEntry.COLUMN_GENRE + ") " +
                        "REFERENCES " + MovieContract.GenreEntry.TABLE_NAME + " (" + MovieContract.GenreEntry._ID + "));"
        );
    }
}

ผู้ให้บริการเนื้อหา:

public class MovieProvider extends ContentProvider {
    // Use an int for each URI we will run, this represents the different queries
    private static final int GENRE = 100;
    private static final int GENRE_ID = 101;
    private static final int MOVIE = 200;
    private static final int MOVIE_ID = 201;

    private static final UriMatcher sUriMatcher = buildUriMatcher();
    private MovieDBHelper mOpenHelper;

    @Override
    public boolean onCreate() {
        mOpenHelper = new MovieDBHelper(getContext());
        return true;
    }

    /**
     * Builds a UriMatcher that is used to determine witch database request is being made.
     */
    public static UriMatcher buildUriMatcher(){
        String content = MovieContract.CONTENT_AUTHORITY;

        // All paths to the UriMatcher have a corresponding code to return
        // when a match is found (the ints above).
        UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);
        matcher.addURI(content, MovieContract.PATH_GENRE, GENRE);
        matcher.addURI(content, MovieContract.PATH_GENRE + "/#", GENRE_ID);
        matcher.addURI(content, MovieContract.PATH_MOVIE, MOVIE);
        matcher.addURI(content, MovieContract.PATH_MOVIE + "/#", MOVIE_ID);

        return matcher;
    }

    @Override
    public String getType(Uri uri) {
        switch(sUriMatcher.match(uri)){
            case GENRE:
                return MovieContract.GenreEntry.CONTENT_TYPE;
            case GENRE_ID:
                return MovieContract.GenreEntry.CONTENT_ITEM_TYPE;
            case MOVIE:
                return MovieContract.MovieEntry.CONTENT_TYPE;
            case MOVIE_ID:
                return MovieContract.MovieEntry.CONTENT_ITEM_TYPE;
            default:
                throw new UnsupportedOperationException("Unknown uri: " + uri);
        }
    }

    @Override
    public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
        final SQLiteDatabase db = mOpenHelper.getWritableDatabase();
        Cursor retCursor;
        switch(sUriMatcher.match(uri)){
            case GENRE:
                retCursor = db.query(
                        MovieContract.GenreEntry.TABLE_NAME,
                        projection,
                        selection,
                        selectionArgs,
                        null,
                        null,
                        sortOrder
                );
                break;
            case GENRE_ID:
                long _id = ContentUris.parseId(uri);
                retCursor = db.query(
                        MovieContract.GenreEntry.TABLE_NAME,
                        projection,
                        MovieContract.GenreEntry._ID + " = ?",
                        new String[]{String.valueOf(_id)},
                        null,
                        null,
                        sortOrder
                );
                break;
            case MOVIE:
                retCursor = db.query(
                        MovieContract.MovieEntry.TABLE_NAME,
                        projection,
                        selection,
                        selectionArgs,
                        null,
                        null,
                        sortOrder
                );
                break;
            case MOVIE_ID:
                _id = ContentUris.parseId(uri);
                retCursor = db.query(
                        MovieContract.MovieEntry.TABLE_NAME,
                        projection,
                        MovieContract.MovieEntry._ID + " = ?",
                        new String[]{String.valueOf(_id)},
                        null,
                        null,
                        sortOrder
                );
                break;
            default:
                throw new UnsupportedOperationException("Unknown uri: " + uri);
        }

        // Set the notification URI for the cursor to the one passed into the function. This
        // causes the cursor to register a content observer to watch for changes that happen to
        // this URI and any of it's descendants. By descendants, we mean any URI that begins
        // with this path.
        retCursor.setNotificationUri(getContext().getContentResolver(), uri);
        return retCursor;
    }

    @Override
    public Uri insert(Uri uri, ContentValues values) {
        final SQLiteDatabase db = mOpenHelper.getWritableDatabase();
        long _id;
        Uri returnUri;

        switch(sUriMatcher.match(uri)){
            case GENRE:
                _id = db.insert(MovieContract.GenreEntry.TABLE_NAME, null, values);
                if(_id > 0){
                    returnUri =  MovieContract.GenreEntry.buildGenreUri(_id);
                } else{
                    throw new UnsupportedOperationException("Unable to insert rows into: " + uri);
                }
                break;
            case MOVIE:
                _id = db.insert(MovieContract.MovieEntry.TABLE_NAME, null, values);
                if(_id > 0){
                    returnUri = MovieContract.MovieEntry.buildMovieUri(_id);
                } else{
                    throw new UnsupportedOperationException("Unable to insert rows into: " + uri);
                }
                break;
            default:
                throw new UnsupportedOperationException("Unknown uri: " + uri);
        }

        // Use this on the URI passed into the function to notify any observers that the uri has
        // changed.
        getContext().getContentResolver().notifyChange(uri, null);
        return returnUri;
    }

    @Override
    public int delete(Uri uri, String selection, String[] selectionArgs) {
        final SQLiteDatabase db = mOpenHelper.getWritableDatabase();
        int rows; // Number of rows effected

        switch(sUriMatcher.match(uri)){
            case GENRE:
                rows = db.delete(MovieContract.GenreEntry.TABLE_NAME, selection, selectionArgs);
                break;
            case MOVIE:
                rows = db.delete(MovieContract.MovieEntry.TABLE_NAME, selection, selectionArgs);
                break;
            default:
                throw new UnsupportedOperationException("Unknown uri: " + uri);
        }

        // Because null could delete all rows:
        if(selection == null || rows != 0){
            getContext().getContentResolver().notifyChange(uri, null);
        }

        return rows;
    }

    @Override
    public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
        final SQLiteDatabase db = mOpenHelper.getWritableDatabase();
        int rows;

        switch(sUriMatcher.match(uri)){
            case GENRE:
                rows = db.update(MovieContract.GenreEntry.TABLE_NAME, values, selection, selectionArgs);
                break;
            case MOVIE:
                rows = db.update(MovieContract.MovieEntry.TABLE_NAME, values, selection, selectionArgs);
                break;
            default:
                throw new UnsupportedOperationException("Unknown uri: " + uri);
        }

        if(rows != 0){
            getContext().getContentResolver().notifyChange(uri, null);
        }

        return rows;
    }
}

ฉันหวังว่ามันจะช่วยคุณได้

การสาธิตGitHub: https://github.com/androidessence/MovieDatabase

บทความฉบับเต็ม: https://guides.codepath.com/android/creating-content-providers

อ้างอิง:

หมายเหตุ: ฉันคัดลอกโค้ดเพียงเพราะหากลิงก์ของเดโมหรือบทความอาจถูกลบในอนาคต

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.